mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 21:20:41 +00:00
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:
parent
28e88a24f6
commit
07cdd39478
@ -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…
Reference in New Issue
Block a user