From e82cb79adf3bf560e1b2b2adb2526f61a30997e0 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 15 Dec 2012 11:45:59 +0100 Subject: avconv: pass the actually selected decoder to filter_codec_opts(). --- avconv_opt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'avconv_opt.c') diff --git a/avconv_opt.c b/avconv_opt.c index 7f9e5e7415..6c7017572e 100644 --- a/avconv_opt.c +++ b/avconv_opt.c @@ -448,12 +448,12 @@ static void add_input_streams(OptionsContext *o, AVFormatContext *ic) ist->file_index = nb_input_files; ist->discard = 1; st->discard = AVDISCARD_ALL; - ist->opts = filter_codec_opts(o->g->codec_opts, ist->st->codec->codec_id, ic, st, NULL); ist->ts_scale = 1.0; MATCH_PER_STREAM_OPT(ts_scale, dbl, ist->ts_scale, ic, st); ist->dec = choose_decoder(o, ic, st); + ist->opts = filter_codec_opts(o->g->codec_opts, ist->st->codec->codec_id, ic, st, ist->dec); switch (dec->codec_type) { case AVMEDIA_TYPE_VIDEO: -- cgit v1.2.3