Browse code

avformat/dump: Show coded dimensions again

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

Michael Niedermayer authored on 2016/06/05 11:11:11
Showing 1 changed files
... ...
@@ -458,6 +458,8 @@ static void dump_stream_format(AVFormatContext *ic, int i,
458 458
     avctx->codec      = st->codec->codec;
459 459
     avctx->qmin       = st->codec->qmin;
460 460
     avctx->qmax       = st->codec->qmax;
461
+    avctx->coded_width  = st->codec->coded_width;
462
+    avctx->coded_height = st->codec->coded_height;
461 463
 
462 464
     if (separator)
463 465
         av_opt_set(avctx, "dump_separator", separator, 0);