mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
interplayvideo: remove a static variable.
This commit is contained in:
parent
089b3d6815
commit
3d973e461b
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user