[FFmpeg-cvslog] lavfi/fps: add shorthand.

Clément Bœsch git at videolan.org
Tue Dec 11 18:17:00 CET 2012


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Tue Dec 11 18:12:07 2012 +0100| [0e0e3db189d3875de1225f64b685475a2bf4682b] | committer: Clément Bœsch

lavfi/fps: add shorthand.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0e0e3db189d3875de1225f64b685475a2bf4682b
---

 libavfilter/vf_fps.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavfilter/vf_fps.c b/libavfilter/vf_fps.c
index 8e7880c..4c8444d 100644
--- a/libavfilter/vf_fps.c
+++ b/libavfilter/vf_fps.c
@@ -74,12 +74,13 @@ AVFILTER_DEFINE_CLASS(fps);
 static av_cold int init(AVFilterContext *ctx, const char *args)
 {
     FPSContext *s = ctx->priv;
+    const char *shorthand[] = { "fps", "round", NULL };
     int ret;
 
     s->class = &fps_class;
     av_opt_set_defaults(s);
 
-    if ((ret = av_set_options_string(s, args, "=", ":")) < 0) {
+    if ((ret = av_opt_set_from_string(s, args, shorthand, "=", ":")) < 0) {
         av_log(ctx, AV_LOG_ERROR, "Error parsing the options string %s.\n",
                args);
         return ret;



More information about the ffmpeg-cvslog mailing list