[Ffmpeg-cvslog] r8027 - trunk/libavcodec/4xm.c

mbardiaux subversion
Mon Feb 19 12:00:39 CET 2007


Author: mbardiaux
Date: Mon Feb 19 12:00:38 2007
New Revision: 8027

Modified:
   trunk/libavcodec/4xm.c

Log:
Remove some old disabled debugging output


Modified: trunk/libavcodec/4xm.c
==============================================================================
--- trunk/libavcodec/4xm.c	(original)
+++ trunk/libavcodec/4xm.c	Mon Feb 19 12:00:38 2007
@@ -491,7 +491,6 @@
 
         for(i=start; i<=end; i++){
             frequency[i]= *ptr++;
-//            printf("%d %d %d\n", start, end, frequency[i]);
         }
         start= *ptr++;
         if(start==0) break;
@@ -502,9 +501,6 @@
 
     while((ptr - buf)&3) ptr++; // 4byte align
 
-//    for(j=0; j<16; j++)
-//        printf("%2X", ptr[j]);
-
     for(j=257; j<512; j++){
         int min_freq[2]= {256*256, 256*256};
         int smallest[2]= {0, 0};
@@ -693,12 +689,6 @@
         av_log(avctx, AV_LOG_ERROR, "ignoring unknown chunk length:%d\n", buf_size);
     }
 
-#if 0
-for(i=0; i<20; i++){
-    printf("%2X %c ", buf[i], clip(buf[i],16,126));
-}
-#endif
-
     p->key_frame= p->pict_type == I_TYPE;
 
     *picture= *p;




More information about the ffmpeg-cvslog mailing list