summaryrefslogtreecommitdiff
path: root/libavcodec/mwsc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/mwsc.c')
-rw-r--r--libavcodec/mwsc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/mwsc.c b/libavcodec/mwsc.c
index 67fc5a03dd..82d149a295 100644
--- a/libavcodec/mwsc.c
+++ b/libavcodec/mwsc.c
@@ -87,13 +87,11 @@ static int rle_uncompress(GetByteContext *gb, PutByteContext *pb, GetByteContext
return intra;
}
-static int decode_frame(AVCodecContext *avctx,
- void *data, int *got_frame,
- AVPacket *avpkt)
+static int decode_frame(AVCodecContext *avctx, AVFrame *frame,
+ int *got_frame, AVPacket *avpkt)
{
MWSCContext *s = avctx->priv_data;
z_stream *const zstream = &s->zstream.zstream;
- AVFrame *frame = data;
uint8_t *buf = avpkt->data;
int buf_size = avpkt->size;
GetByteContext gb;