[FFmpeg-cvslog] dump: print the original coded dimensions when available

Vittorio Giovara git at videolan.org
Thu Oct 9 01:56:10 CEST 2014


ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Fri Sep 26 15:24:07 2014 +0100| [9f3a70c44224ed92d91df65bb9470a2649e7d019] | committer: Vittorio Giovara

dump: print the original coded dimensions when available

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9f3a70c44224ed92d91df65bb9470a2649e7d019
---

 libavcodec/utils.c |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 9e8f541..89f249f 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -1950,6 +1950,12 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
                      "%dx%d",
                      enc->width, enc->height);
 
+            if (av_log_get_level() >= AV_LOG_VERBOSE &&
+                (enc->width != enc->coded_width ||
+                 enc->height != enc->coded_height))
+                snprintf(buf + strlen(buf), buf_size - strlen(buf),
+                         " (%dx%d)", enc->coded_width, enc->coded_height);
+
             if (enc->sample_aspect_ratio.num) {
                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
                           enc->width * enc->sample_aspect_ratio.num,



More information about the ffmpeg-cvslog mailing list