Merge commit 'df0229a7caa124dcfb84c34b48d316744c467311'
* commit 'df0229a7caa124dcfb84c34b48d316744c467311': avconv: Apply codec options to streams that are copied as well Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
41401773d3
2
ffmpeg.c
2
ffmpeg.c
@ -2424,6 +2424,8 @@ static int transcode_init(void)
|
|||||||
|
|
||||||
if (ost->st->codec->me_threshold)
|
if (ost->st->codec->me_threshold)
|
||||||
input_streams[ost->source_index]->st->codec->debug |= FF_DEBUG_MV;
|
input_streams[ost->source_index]->st->codec->debug |= FF_DEBUG_MV;
|
||||||
|
} else {
|
||||||
|
av_opt_set_dict(ost->st->codec, &ost->opts);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -957,6 +957,8 @@ static OutputStream *new_output_stream(OptionsContext *o, AVFormatContext *oc, e
|
|||||||
preset, ost->file_index, ost->index);
|
preset, ost->file_index, ost->index);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
ost->opts = filter_codec_opts(o->g->codec_opts, AV_CODEC_ID_NONE, oc, st, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
avcodec_get_context_defaults3(st->codec, ost->enc);
|
avcodec_get_context_defaults3(st->codec, ost->enc);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user