projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
820089c
)
Print VC-1 aspect ratio in debug
author
Kostya Shishkov
<kostya.shishkov@gmail.com>
Tue, 13 Jan 2009 08:03:45 +0000
(08:03 +0000)
committer
Kostya Shishkov
<kostya.shishkov@gmail.com>
Tue, 13 Jan 2009 08:03:45 +0000
(08:03 +0000)
Originally committed as revision 16577 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/vc1.c
patch
|
blob
|
history
diff --git
a/libavcodec/vc1.c
b/libavcodec/vc1.c
index f91a1d55e62c6ea01e21e82ed5298b2eaadb721f..32927e0280c0ae3724317899f040be5139ea98da 100644
(file)
--- 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)) {