changeset 4467:a9f64d2a2e69 libavcodec

These messages are just for debug purposes
author kostya
date Sat, 03 Feb 2007 06:43:06 +0000
parents 1dea76bf254f
children 5455cb5a759c
files vc1.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/vc1.c	Sat Feb 03 06:41:14 2007 +0000
+++ b/vc1.c	Sat Feb 03 06:43:06 2007 +0000
@@ -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){