pnmdec: use explicit casts to remove const to avoid warning with clang

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-09-22 04:51:47 +02:00
parent 28e88a24f6
commit 07cdd39478

View File

@ -37,8 +37,8 @@ static int pnm_decode_frame(AVCodecContext *avctx, void *data,
int components, sample_len;
s->bytestream_start =
s->bytestream = buf;
s->bytestream_end = buf + buf_size;
s->bytestream = (uint8_t *)buf;
s->bytestream_end = (uint8_t *)buf + buf_size;
if (ff_pnm_decode_header(avctx, s) < 0)
return -1;