From: Michael Niedermayer Date: Sun, 5 Jun 2016 02:11:11 +0000 (+0200) Subject: avformat/dump: Show coded dimensions again X-Git-Tag: android-x86-7.1-r1~4909 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=4879841d1529e1919fc07f613ecd1a0f65b9d456;p=android-x86%2Fexternal-ffmpeg.git avformat/dump: Show coded dimensions again Signed-off-by: Michael Niedermayer --- diff --git a/libavformat/dump.c b/libavformat/dump.c index 126b6241ee..8e97197e1a 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -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);