summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorHo Ming Shun <cyph1984@gmail.com>2021-09-24 17:04:38 +0800
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-12-12 16:55:13 +0100
commitdd779749f05fd3a786857b06ee4efc5e193bf90e (patch)
tree204e841dda21c55fa4a27fa82923db356be56a0d /libavcodec
parent6f0e8b998a91f0ad9a260b01d8ff29efdf3321d3 (diff)
avcodec/mmaldec: fix pointer type warning
Tested-by: Cameron Gutman <aicommander@gmail.com> Signed-off-by: Ho Ming Shun <cyph1984@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/mmaldec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mmaldec.c b/libavcodec/mmaldec.c
index f1bcaed0ff..b0140170f2 100644
--- a/libavcodec/mmaldec.c
+++ b/libavcodec/mmaldec.c
@@ -656,7 +656,7 @@ static int ffmal_copy_frame(AVCodecContext *avctx, AVFrame *frame,
av_image_fill_arrays(src, linesize,
buffer->data + buffer->type->video.offset[0],
avctx->pix_fmt, w, h, 1);
- av_image_copy(frame->data, frame->linesize, src, linesize,
+ av_image_copy(frame->data, frame->linesize, (const uint8_t **)src, linesize,
avctx->pix_fmt, avctx->width, avctx->height);
}