]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Remove unused code_counts array from interplavideo.c.
authorreimar <reimar@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 17 Apr 2009 19:21:50 +0000 (19:21 +0000)
committerreimar <reimar@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 17 Apr 2009 19:21:50 +0000 (19:21 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18592 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/interplayvideo.c

index 51ee759ead092e2d3b96804e7af1033d8a783b98..67df4b363dfecdafdf437bbbbdd4ab8d0ad9505b 100644 (file)
@@ -569,7 +569,6 @@ static void ipvideo_decode_opcodes(IpvideoContext *s)
     int index = 0;
     unsigned char opcode;
     int ret;
-    int code_counts[16] = {0};
     static int frame = 0;
 
     debug_interplay("------------------ frame %d\n", frame);
@@ -597,7 +596,6 @@ static void ipvideo_decode_opcodes(IpvideoContext *s)
 
             debug_interplay("  block @ (%3d, %3d): encoding 0x%X, data ptr @ %p\n",
                 x - y, y / s->stride, opcode, s->stream_ptr);
-            code_counts[opcode]++;
 
             s->pixel_ptr = s->current_frame.data[0] + x;
             ret = ipvideo_decode_block[opcode](s);