changeset 9998:6b229807a182 libavcodec

Remove unused debug av_log() calls.
author diego
date Thu, 30 Jul 2009 20:57:41 +0000
parents 53d8841d4cc5
children c78fd9154378
files h263dec.c msmpeg4.c
diffstat 2 files changed, 0 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/h263dec.c	Thu Jul 30 07:33:16 2009 +0000
+++ b/h263dec.c	Thu Jul 30 20:57:41 2009 +0000
@@ -345,11 +345,6 @@
 #ifdef PRINT_FRAME_TIME
 uint64_t time= rdtsc();
 #endif
-#ifdef DEBUG
-    av_log(avctx, AV_LOG_DEBUG, "*****frame %d size=%d\n", avctx->frame_number, buf_size);
-    if(buf_size>0)
-        av_log(avctx, AV_LOG_DEBUG, "bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]);
-#endif
     s->flags= avctx->flags;
     s->flags2= avctx->flags2;
 
@@ -631,10 +626,6 @@
             return -1;
     }
 
-#ifdef DEBUG
-    av_log(avctx, AV_LOG_DEBUG, "qscale=%d\n", s->qscale);
-#endif
-
     ff_er_frame_start(s);
 
     //the second part of the wmv2 header contains the MB skip bits which are stored in current_picture->mb_type
--- a/msmpeg4.c	Thu Jul 30 07:33:16 2009 +0000
+++ b/msmpeg4.c	Thu Jul 30 20:57:41 2009 +0000
@@ -362,10 +362,6 @@
 
     s->esc3_level_length= 0;
     s->esc3_run_length= 0;
-
-#ifdef DEBUG
-    av_log(s->avctx, AV_LOG_DEBUG, "*****frame %d:\n", frame_count++);
-#endif
 }
 
 void msmpeg4_encode_ext_header(MpegEncContext * s)
@@ -1325,9 +1321,6 @@
     s->esc3_level_length= 0;
     s->esc3_run_length= 0;
 
-#ifdef DEBUG
-    av_log(s->avctx, AV_LOG_DEBUG, "*****frame %d:\n", frame_count++);
-#endif
     return 0;
 }