[FFmpeg-devel] [PATCH 4/4] avcodec/flicvideo: Remove unnecessary cast
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Mon Sep 11 18:31:46 EEST 2023
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
libavcodec/flicvideo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 &&
--
2.34.1
More information about the ffmpeg-devel
mailing list