Commit 6826f16e authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/utils: Do not overwrite, but use sample_fmt from context

Fixes Ticket 3759
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 218bb8b3
......@@ -3753,6 +3753,9 @@ FF_ENABLE_DEPRECATION_WARNINGS
/* if no packet was ever seen, update context now for has_codec_parameters */
if (!st->internal->avctx_inited) {
if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
st->codecpar->format == AV_SAMPLE_FMT_NONE)
st->codecpar->format = st->internal->avctx->sample_fmt;
ret = avcodec_parameters_to_context(st->internal->avctx, st->codecpar);
if (ret < 0)
goto find_stream_info_err;
......
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