Browse Source

Print Theora bitstream version at DEBUG, not at VERBOSE level.

Originally committed as revision 11916 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 18 years ago
parent
commit
356306aca2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vp3.c

+ 1
- 1
libavcodec/vp3.c View File

@@ -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 */


Loading…
Cancel
Save