aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/flicvideo.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-11 17:12:56 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-11 20:27:26 +0200
commit740ce93fae72fc5e8f16e9c293cc9aa1cf530522 (patch)
treea7fb0ee9701662549420f84ed379c89e223767dd /libavcodec/flicvideo.c
parenteb9bfe30a284810817f8549ce798cfac57eb694f (diff)
downloadffmpeg-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.c2
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 &&