From ce7dbd0481f990e249c2a05f179228489d3062cf Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Wed, 30 Mar 2022 21:33:24 +0200 Subject: avcodec/codec_internal: Make FFCodec.decode use AVFrame* This increases type-safety by avoiding conversions from/through void*. It also avoids the boilerplate "AVFrame *frame = data;" line for non-subtitle decoders. Signed-off-by: Andreas Rheinhardt --- libavcodec/photocd.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libavcodec/photocd.c') diff --git a/libavcodec/photocd.c b/libavcodec/photocd.c index a088ed0fa3..48dc1b88c4 100644 --- a/libavcodec/photocd.c +++ b/libavcodec/photocd.c @@ -290,13 +290,12 @@ static av_noinline int decode_huff(AVCodecContext *avctx, AVFrame *frame, return 0; } -static int photocd_decode_frame(AVCodecContext *avctx, void *data, +static int photocd_decode_frame(AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *avpkt) { PhotoCDContext *s = avctx->priv_data; const uint8_t *buf = avpkt->data; GetByteContext *gb = &s->gb; - AVFrame *p = data; uint8_t *ptr, *ptr1, *ptr2; int ret; -- cgit v1.2.3