avcodec/kgv1dec: add casts to silence "assignment from incompatible pointer type"

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-05-03 22:09:26 +02:00
parent bb605ef8ab
commit 5918c5a4cc
1 changed files with 2 additions and 2 deletions

View File

@ -82,8 +82,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
if ((res = ff_get_buffer(avctx, frame, 0)) < 0)
return res;
out = c->frame_buffer;
prev = c->last_frame_buffer;
out = (uint8_t*)c->frame_buffer;
prev = (uint8_t*)c->last_frame_buffer;
for (i = 0; i < 8; i++)
offsets[i] = -1;