cosmetics: remove some needless commented-out stuff
authorJustin Ruggles <justin.ruggles@gmail.com>
Fri, 16 Sep 2011 19:39:51 +0000 (15:39 -0400)
committerJustin Ruggles <justin.ruggles@gmail.com>
Thu, 20 Oct 2011 17:09:25 +0000 (13:09 -0400)
libavcodec/shorten.c

index 3f06e57..aeb07d7 100644 (file)
@@ -409,7 +409,6 @@ static int shorten_decode_frame(AVCodecContext *avctx,
         input_buf_size= buf_size;
 
         if(s->bitstream_index + s->bitstream_size + buf_size > s->allocated_bitstream_size){
-            //                printf("memmove\n");
             memmove(s->bitstream, &s->bitstream[s->bitstream_index], s->bitstream_size);
             s->bitstream_index=0;
         }
@@ -556,7 +555,6 @@ static int shorten_decode_frame(AVCodecContext *avctx,
         }
     }
 
-    //    s->last_blocksize = s->blocksize;
     s->bitindex = get_bits_count(&s->gb) - 8*((get_bits_count(&s->gb))/8);
     i= (get_bits_count(&s->gb))/8;
     if (i > buf_size) {