diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-11 17:12:56 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-11 20:27:26 +0200 |
commit | 740ce93fae72fc5e8f16e9c293cc9aa1cf530522 (patch) | |
tree | a7fb0ee9701662549420f84ed379c89e223767dd /libavcodec/flicvideo.c | |
parent | eb9bfe30a284810817f8549ce798cfac57eb694f (diff) | |
download | ffmpeg-740ce93fae72fc5e8f16e9c293cc9aa1cf530522.tar.gz |
avcodec/flicvideo: Remove unnecessary cast
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/flicvideo.c')
-rw-r--r-- | libavcodec/flicvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c index e4b334e10f..8531eb715c 100644 --- a/libavcodec/flicvideo.c +++ b/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 && |