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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
release/1.0
Michael Niedermayer 12 years ago
parent 28e88a24f6
commit 07cdd39478
  1. 4
      libavcodec/pnmdec.c

@ -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;

Loading…
Cancel
Save