comparison vp3.c @ 5450:a6954173e82f libavcodec

Reduce Theora decoder verbosity.
author diego
date Fri, 03 Aug 2007 16:43:11 +0000
parents 2b72f9bc4f06
children 9f8219a3b86f
comparison
equal deleted inserted replaced
5449:a0838fadd37a 5450:a6954173e82f
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_INFO, "Theora bitstream version %X\n", s->theora); 2375 av_log(avctx, AV_LOG_VERBOSE, "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 {