diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-12-25 18:34:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-25 21:31:19 +0100 |
commit | e079661d23ff3891cf663a85344d1f8eb60a4fe1 (patch) | |
tree | bcc612fb5e1a2d354b4afec5c252d0eee3a6f63d | |
parent | 565f786d1da1fea80fcea231550d5d0f174c009a (diff) | |
download | ffmpeg-e079661d23ff3891cf663a85344d1f8eb60a4fe1.tar.gz |
ffmpeg_opt: Fix -target vcd
The removed line makes no sense and doesnt work
fixes ticket #3239
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | ffmpeg_opt.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c index e6ac3ee8e7..d267c6d4e5 100644 --- a/ffmpeg_opt.c +++ b/ffmpeg_opt.c @@ -2133,7 +2133,6 @@ static int opt_target(void *optctx, const char *opt, const char *arg) opt_video_codec(o, "c:v", "mpeg1video"); opt_audio_codec(o, "c:a", "mp2"); parse_option(o, "f", "vcd", options); - av_dict_set(&o->g->codec_opts, "b:v", arg, AV_DICT_DONT_OVERWRITE); parse_option(o, "s", norm == PAL ? "352x288" : "352x240", options); parse_option(o, "r", frame_rates[norm], options); |