Mercurial > libavcodec.hg
comparison vp3.c @ 6349:aed237dd11d8 libavcodec
Print Theora bitstream version at DEBUG, not at VERBOSE level.
author | diego |
---|---|
date | Wed, 13 Feb 2008 08:05:51 +0000 |
parents | 8c7173e5d08c |
children | 8e63d869a904 |
comparison
equal
deleted
inserted
replaced
6348:0cd10ee0ecf4 | 6349:aed237dd11d8 |
---|---|
2370 { | 2370 { |
2371 Vp3DecodeContext *s = avctx->priv_data; | 2371 Vp3DecodeContext *s = avctx->priv_data; |
2372 int visible_width, visible_height; | 2372 int visible_width, visible_height; |
2373 | 2373 |
2374 s->theora = get_bits_long(gb, 24); | 2374 s->theora = get_bits_long(gb, 24); |
2375 av_log(avctx, AV_LOG_VERBOSE, "Theora bitstream version %X\n", s->theora); | 2375 av_log(avctx, AV_LOG_DEBUG, "Theora bitstream version %X\n", s->theora); |
2376 | 2376 |
2377 /* 3.2.0 aka alpha3 has the same frame orientation as original vp3 */ | 2377 /* 3.2.0 aka alpha3 has the same frame orientation as original vp3 */ |
2378 /* but previous versions have the image flipped relative to vp3 */ | 2378 /* but previous versions have the image flipped relative to vp3 */ |
2379 if (s->theora < 0x030200) | 2379 if (s->theora < 0x030200) |
2380 { | 2380 { |