From 79bf1f0ad03f17bb00913fdef6e955d3c46c8a92 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 22 Sep 2012 05:09:06 +0200 Subject: [PATCH] rawdec: fix "warning: assignment from incompatible pointer type" Signed-off-by: Michael Niedermayer --- libavcodec/rawdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index 50bd7f377e..75b578359e 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -208,7 +208,7 @@ static int raw_decode(AVCodecContext *avctx, return res; if((avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length) || (av_pix_fmt_descriptors[avctx->pix_fmt].flags & PIX_FMT_PSEUDOPAL)) { - frame->data[1]= context->palette; + frame->data[1]= (uint8_t*)context->palette; } if (avctx->pix_fmt == PIX_FMT_PAL8) { const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL);