Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-06-05 05:11:11 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-06-13 21:26:21 +0300
commit4879841d1529e1919fc07f613ecd1a0f65b9d456 (patch)
treef13ad75c9c6894a92b284d9272d1739dad1cc3f5
parent1f872332c47f58dab27410c00c72b79ce489405e (diff)
avformat/dump: Show coded dimensions again
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-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);