[Ffmpeg-cvslog] r7811 - trunk/libavcodec/vc1.c
kostya
subversion
Sat Feb 3 07:43:06 CET 2007
Author: kostya
Date: Sat Feb 3 07:43:06 2007
New Revision: 7811
Modified:
trunk/libavcodec/vc1.c
Log:
These messages are just for debug purposes
Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c (original)
+++ trunk/libavcodec/vc1.c Sat Feb 3 07:43:06 2007
@@ -1304,10 +1304,10 @@
}
if(get_bits1(gb)) { //Display Info - decoding is not affected by it
int w, h, ar = 0;
- av_log(v->s.avctx, AV_LOG_INFO, "Display extended info:\n");
+ av_log(v->s.avctx, AV_LOG_DEBUG, "Display extended info:\n");
v->s.avctx->width = v->s.width = w = get_bits(gb, 14) + 1;
v->s.avctx->height = v->s.height = h = get_bits(gb, 14) + 1;
- av_log(v->s.avctx, AV_LOG_INFO, "Display dimensions: %ix%i\n", w, h);
+ av_log(v->s.avctx, AV_LOG_DEBUG, "Display dimensions: %ix%i\n", w, h);
if(get_bits1(gb))
ar = get_bits(gb, 4);
if(ar && ar < 14){
More information about the ffmpeg-cvslog
mailing list