[FFmpeg-cvslog] ffmpeg_opt: dont fail for sameq/same_quant.

Michael Niedermayer git at videolan.org
Thu Oct 11 04:03:53 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Oct 11 04:00:16 2012 +0200| [e47ab0b2c93e040f51d23239f4080eb6222a94e8] | committer: Michael Niedermayer

ffmpeg_opt: dont fail for sameq/same_quant.

Instead print a warning.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 ffmpeg_opt.c |   10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c
index 10c0d04..23dbb3e 100644
--- a/ffmpeg_opt.c
+++ b/ffmpeg_opt.c
@@ -157,6 +157,12 @@ static int opt_pad(void *optctx, const char *opt, const char *arg)
     return -1;
 }
 
+static int opt_sameq(void *optctx, const char *opt, const char *arg)
+{
+    av_log(NULL, AV_LOG_WARNING, "Ignoring option '%s'\n", opt);
+    return 0;
+}
+
 static int opt_video_channel(void *optctx, const char *opt, const char *arg)
 {
     av_log(NULL, AV_LOG_WARNING, "This option is deprecated, use -channel.\n");
@@ -2389,6 +2395,10 @@ const OptionDef options[] = {
         "rate control override for specific intervals", "override" },
     { "vcodec",       OPT_VIDEO | HAS_ARG  | OPT_PERFILE,                        { .func_arg = opt_video_codec },
         "force video codec ('copy' to copy stream)", "codec" },
+    { "sameq",        OPT_VIDEO | OPT_EXPERT ,                                   { .func_arg = opt_sameq },
+        "Removed" },
+    { "same_quant",   OPT_VIDEO | OPT_EXPERT ,                                   { .func_arg = opt_sameq },
+        "Removed" },
     { "timecode",     OPT_VIDEO | HAS_ARG | OPT_PERFILE,                         { .func_arg = opt_timecode },
         "set initial TimeCode value.", "hh:mm:ss[:;.]ff" },
     { "pass",         OPT_VIDEO | HAS_ARG | OPT_SPEC | OPT_INT,                  { .off = OFFSET(pass) },



More information about the ffmpeg-cvslog mailing list