1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-19 05:49:09 +02:00

avcodec/flicvideo: Remove unnecessary cast

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2023-09-11 17:12:56 +02:00
parent eb9bfe30a2
commit 740ce93fae

View File

@ -79,7 +79,7 @@ typedef struct FlicDecodeContext {
static av_cold int flic_decode_init(AVCodecContext *avctx)
{
FlicDecodeContext *s = avctx->priv_data;
unsigned char *fli_header = (unsigned char *)avctx->extradata;
uint8_t *fli_header = avctx->extradata;
int depth;
if (avctx->extradata_size != 0 &&