Commit 4879841d authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/dump: Show coded dimensions again

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 1f872332
......@@ -458,6 +458,8 @@ static void dump_stream_format(AVFormatContext *ic, int i,
avctx->codec = st->codec->codec;
avctx->qmin = st->codec->qmin;
avctx->qmax = st->codec->qmax;
avctx->coded_width = st->codec->coded_width;
avctx->coded_height = st->codec->coded_height;
if (separator)
av_opt_set(avctx, "dump_separator", separator, 0);
......
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