diff options
Diffstat (limited to 'libavcodec/cdxl.c')
-rw-r--r-- | libavcodec/cdxl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/cdxl.c b/libavcodec/cdxl.c index d11106a4e4..34481fe2a3 100644 --- a/libavcodec/cdxl.c +++ b/libavcodec/cdxl.c @@ -243,11 +243,10 @@ static void cdxl_decode_ham8(CDXLVideoContext *c, AVFrame *frame) } } -static int cdxl_decode_frame(AVCodecContext *avctx, void *data, +static int cdxl_decode_frame(AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *pkt) { CDXLVideoContext *c = avctx->priv_data; - AVFrame * const p = data; int ret, w, h, encoding, aligned_width, buf_size = pkt->size; const uint8_t *buf = pkt->data; |