From 78104b5d7668f238737cc767d9572f0327c877f1 Mon Sep 17 00:00:00 2001 From: Michel Bardiaux Date: Mon, 19 Feb 2007 11:00:38 +0000 Subject: Remove some old disabled debugging output Originally committed as revision 8027 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/4xm.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'libavcodec/4xm.c') diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index ea60e9bf2f..6889dbc4b2 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -491,7 +491,6 @@ static uint8_t *read_huffman_tables(FourXContext *f, uint8_t * const buf){ 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 @@ static uint8_t *read_huffman_tables(FourXContext *f, uint8_t * const buf){ 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 @@ static int decode_frame(AVCodecContext *avctx, 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; -- cgit v1.2.3