Commit 8750aef3 authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg_opt: Fix forcing fourccs

Fixes Ticket4682
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent dec72888
......@@ -1204,6 +1204,7 @@ static OutputStream *new_output_stream(OptionsContext *o, AVFormatContext *oc, e
uint32_t tag = strtol(codec_tag, &next, 0);
if (*next)
tag = AV_RL32(codec_tag);
ost->st->codec->codec_tag =
ost->enc_ctx->codec_tag = tag;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment