diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-29 19:05:40 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-04-29 20:00:53 +0200 |
commit | 2e15305b7088c9dfe1c8d29c248a9b49bcf0b0a3 (patch) | |
tree | 975487aadba34a6b14eea20ca282c60847fd7222 /libavcodec/wmv2dec.c | |
parent | 09cbf60f8eec65cc53c5931234476a9956cc27fd (diff) | |
download | ffmpeg-2e15305b7088c9dfe1c8d29c248a9b49bcf0b0a3.tar.gz |
Remove some disabled printf debug cruft.
Diffstat (limited to 'libavcodec/wmv2dec.c')
-rw-r--r-- | libavcodec/wmv2dec.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libavcodec/wmv2dec.c b/libavcodec/wmv2dec.c index 578cce9200..10fdde7093 100644 --- a/libavcodec/wmv2dec.c +++ b/libavcodec/wmv2dec.c @@ -116,16 +116,6 @@ int ff_wmv2_decode_picture_header(MpegEncContext * s) Wmv2Context * const w= (Wmv2Context*)s; int code; -#if 0 -{ -int i; -for(i=0; i<s->gb.size*8; i++) - printf("%d", get_bits1(&s->gb)); -// get_bits1(&s->gb); -printf("END\n"); -return -1; -} -#endif if(s->picture_number==0) decode_ext_header(w); @@ -316,10 +306,6 @@ static inline int wmv2_decode_inter_block(Wmv2Context *w, DCTELEM *block, int n, if(w->per_block_abt) w->abt_type= decode012(&s->gb); -#if 0 - if(w->per_block_abt) - printf("B%d", w->abt_type); -#endif w->abt_type_table[n]= w->abt_type; if(w->abt_type){ |