summaryrefslogtreecommitdiff
path: root/libavcodec/vp3.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-02-13 08:05:51 +0000
committerDiego Biurrun <diego@biurrun.de>2008-02-13 08:05:51 +0000
commit356306aca24e8d86d4c3caaeace49622d6798482 (patch)
treea78b8132eed107535c761bcecf4dc01b451f3126 /libavcodec/vp3.c
parent5edac5dc9489cc41e7c8a07bd030d6e38032cc19 (diff)
Print Theora bitstream version at DEBUG, not at VERBOSE level.
Originally committed as revision 11916 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r--libavcodec/vp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 387d39b496..92258d1395 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -2372,7 +2372,7 @@ static int theora_decode_header(AVCodecContext *avctx, GetBitContext *gb)
int visible_width, visible_height;
s->theora = get_bits_long(gb, 24);
- av_log(avctx, AV_LOG_VERBOSE, "Theora bitstream version %X\n", s->theora);
+ av_log(avctx, AV_LOG_DEBUG, "Theora bitstream version %X\n", s->theora);
/* 3.2.0 aka alpha3 has the same frame orientation as original vp3 */
/* but previous versions have the image flipped relative to vp3 */