summaryrefslogtreecommitdiff
path: root/libavcodec/interplayvideo.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-04-17 19:21:50 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-04-17 19:21:50 +0000
commit28ab90edde2353d5367fbbc4d00519f9924f75ab (patch)
treea7c9623e469f4722f6526816f63f8750f95c00b5 /libavcodec/interplayvideo.c
parentb24bbbb4da4ee8950a876ce6706aa3a03236fdd9 (diff)
Remove unused code_counts array from interplavideo.c.
Originally committed as revision 18592 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/interplayvideo.c')
-rw-r--r--libavcodec/interplayvideo.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c
index 51ee759ead..67df4b363d 100644
--- a/libavcodec/interplayvideo.c
+++ b/libavcodec/interplayvideo.c
@@ -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);