[FFmpeg-cvslog] r16577 - trunk/libavcodec/vc1.c
kostya
subversion
Tue Jan 13 09:03:45 CET 2009
Author: kostya
Date: Tue Jan 13 09:03:45 2009
New Revision: 16577
Log:
Print VC-1 aspect ratio in debug
Modified:
trunk/libavcodec/vc1.c
Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c Tue Jan 13 09:02:31 2009 (r16576)
+++ trunk/libavcodec/vc1.c Tue Jan 13 09:03:45 2009 (r16577)
@@ -1019,6 +1019,7 @@ static int decode_sequence_header_adv(VC
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)) {
More information about the ffmpeg-cvslog
mailing list