avformat/dump: Use codec and QP limits from AVCodecContext

Fixes regression
Fixes Ticket5421

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/196/merge
Michael Niedermayer 9 years ago
parent 0e84eee719
commit fc07972582
  1. 3
      libavformat/dump.c

@ -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…
Cancel
Save