mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/dump: Use codec and QP limits from AVCodecContext
Fixes regression Fixes Ticket5421 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
0e84eee719
commit
fc07972582
|
@ -455,6 +455,9 @@ static void dump_stream_format(AVFormatContext *ic, int i,
|
|||
|
||||
// Fields which are missing from AVCodecParameters need to be taken from the AVCodecContext
|
||||
avctx->properties = st->codec->properties;
|
||||
avctx->codec = st->codec->codec;
|
||||
avctx->qmin = st->codec->qmin;
|
||||
avctx->qmax = st->codec->qmax;
|
||||
|
||||
if (separator)
|
||||
av_opt_set(avctx, "dump_separator", separator, 0);
|
||||
|
|
Loading…
Reference in New Issue