diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-11-19 10:09:54 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-01-14 11:36:45 +0100 |
commit | 3d973e461be66d9fcfa8ab68e14fdddf16a7dd69 (patch) | |
tree | 07d2d89ba9a28e2289797bf53cdbab86873d297f | |
parent | 089b3d6815a8b8f720482b907f526300d5dd7927 (diff) | |
download | ffmpeg-3d973e461be66d9fcfa8ab68e14fdddf16a7dd69.tar.gz |
interplayvideo: remove a static variable.
-rw-r--r-- | libavcodec/interplayvideo.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c index 012df378af..76e7d0fe41 100644 --- a/libavcodec/interplayvideo.c +++ b/libavcodec/interplayvideo.c @@ -882,12 +882,8 @@ static void ipvideo_decode_opcodes(IpvideoContext *s) int x, y; unsigned char opcode; int ret; - static int frame = 0; GetBitContext gb; - av_dlog(NULL, "------------------ frame %d\n", frame); - frame++; - bytestream2_skip(&s->stream_ptr, 14); /* data starts 14 bytes in */ if (!s->is_16bpp) { /* this is PAL8, so make the palette available */ @@ -923,7 +919,7 @@ static void ipvideo_decode_opcodes(IpvideoContext *s) } if (ret != 0) { av_log(s->avctx, AV_LOG_ERROR, " Interplay video: decode problem on frame %d, @ block (%d, %d)\n", - frame, x, y); + s->avctx->frame_number, x, y); return; } } |