mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-01 10:11:01 +00:00
Merge commit '5735552f1f17ea01dcbc99b08f54b5bf52176a8f'
* commit '5735552f1f17ea01dcbc99b08f54b5bf52176a8f': pngenc: Drop pointless pointer cast in png_write_row() Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
96cea6269a
@ -215,7 +215,7 @@ static int png_write_row(PNGEncContext *s, const uint8_t *data, int size)
|
||||
int ret;
|
||||
|
||||
s->zstream.avail_in = size;
|
||||
s->zstream.next_in = (uint8_t *)data;
|
||||
s->zstream.next_in = data;
|
||||
while (s->zstream.avail_in > 0) {
|
||||
ret = deflate(&s->zstream, Z_NO_FLUSH);
|
||||
if (ret != Z_OK)
|
||||
|
Loading…
Reference in New Issue
Block a user