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:
@@ -79,7 +79,7 @@ typedef struct FlicDecodeContext {
|
|||||||
static av_cold int flic_decode_init(AVCodecContext *avctx)
|
static av_cold int flic_decode_init(AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
FlicDecodeContext *s = avctx->priv_data;
|
FlicDecodeContext *s = avctx->priv_data;
|
||||||
unsigned char *fli_header = (unsigned char *)avctx->extradata;
|
uint8_t *fli_header = avctx->extradata;
|
||||||
int depth;
|
int depth;
|
||||||
|
|
||||||
if (avctx->extradata_size != 0 &&
|
if (avctx->extradata_size != 0 &&
|
||||||
|
Reference in New Issue
Block a user