diff options
author | Limin Wang <lance.lmwang@gmail.com> | 2019-09-12 17:23:40 +0800 |
---|---|---|
committer | Limin Wang <lance.lmwang@gmail.com> | 2020-05-08 09:11:56 +0800 |
commit | 4cea39ad9b993e88413ddc4868b0b281b8a5e83e (patch) | |
tree | 610484b5d406b36d10b2a1048074d85d978a93bc /libavcodec | |
parent | 9d442102b9093405f4e2525a9f97e51fe5303a80 (diff) | |
download | ffmpeg-4cea39ad9b993e88413ddc4868b0b281b8a5e83e.tar.gz |
avcodec/pngdec: remove the unnecessary type conversion
Reviewed-by: Carl Eugen Hoyos <ceffmpeg@gmail.com>
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/pngdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c index 67bfc41b31..d72f9bbb80 100644 --- a/libavcodec/pngdec.c +++ b/libavcodec/pngdec.c @@ -415,7 +415,7 @@ static int png_decode_idat(PNGDecContext *s, int length) { int ret; s->zstream.avail_in = FFMIN(length, bytestream2_get_bytes_left(&s->gb)); - s->zstream.next_in = (unsigned char *)s->gb.buffer; + s->zstream.next_in = s->gb.buffer; bytestream2_skip(&s->gb, length); /* decode one line if possible */ @@ -454,7 +454,7 @@ static int decode_zbuf(AVBPrint *bp, const uint8_t *data, zstream.opaque = NULL; if (inflateInit(&zstream) != Z_OK) return AVERROR_EXTERNAL; - zstream.next_in = (unsigned char *)data; + zstream.next_in = data; zstream.avail_in = data_end - data; av_bprint_init(bp, 0, AV_BPRINT_SIZE_UNLIMITED); |