avcodec/flicvideo: Remove unnecessary cast

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
pull/390/head
Andreas Rheinhardt 1 year ago
parent eb9bfe30a2
commit 740ce93fae
  1. 2
      libavcodec/flicvideo.c

@ -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 &&

Loading…
Cancel
Save