diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-01-13 08:03:45 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-01-13 08:03:45 +0000 |
commit | e9ca5f089201cfe1abfef722ce1683d1e3443f57 (patch) | |
tree | 6ec0a82da57c2b9413cb1b9537c81e7a9de23583 /libavcodec/vc1.c | |
parent | 820089cb06f4f5d9013960c48cce1d76e2f47b62 (diff) | |
download | ffmpeg-e9ca5f089201cfe1abfef722ce1683d1e3443f57.tar.gz |
Print VC-1 aspect ratio in debug
Originally committed as revision 16577 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index f91a1d55e6..32927e0280 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -1019,6 +1019,7 @@ static int decode_sequence_header_adv(VC1Context *v, GetBitContext *gb) h = get_bits(gb, 8); v->s.avctx->sample_aspect_ratio = (AVRational){w, h}; } + av_log(v->s.avctx, AV_LOG_DEBUG, "Aspect: %i:%i\n", v->s.avctx->sample_aspect_ratio.num, v->s.avctx->sample_aspect_ratio.den); if(get_bits1(gb)){ //framerate stuff if(get_bits1(gb)) { |