summaryrefslogtreecommitdiff
path: root/libavformat/dump.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-06-05 04:11:11 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-06-13 20:26:21 +0200
commit4879841d1529e1919fc07f613ecd1a0f65b9d456 (patch)
treef13ad75c9c6894a92b284d9272d1739dad1cc3f5 /libavformat/dump.c
parent1f872332c47f58dab27410c00c72b79ce489405e (diff)
avformat/dump: Show coded dimensions again
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/dump.c')
-rw-r--r--libavformat/dump.c2
1 files changed, 2 insertions, 0 deletions
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);