summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichel Bardiaux <mbardiaux@mediaxim.be>2007-02-19 11:00:38 +0000
committerMichel Bardiaux <mbardiaux@mediaxim.be>2007-02-19 11:00:38 +0000
commit78104b5d7668f238737cc767d9572f0327c877f1 (patch)
tree4bd137cc5334edb6ef8403e993eed65066b4d8ea /libavcodec
parent4672503d8ce2616943a8d0e3cd9ae58627712d36 (diff)
Remove some old disabled debugging output
Originally committed as revision 8027 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/4xm.c10
1 files changed, 0 insertions, 10 deletions
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;