Commit ea0524cc authored by kostya's avatar kostya

Print VC-1 aspect ratio in debug

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16577 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 00233dc8
......@@ -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)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment