Commit 146ef3f3 authored by Michael Niedermayer's avatar Michael Niedermayer

pngdec: fix warning about pointer types

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c6736713
...@@ -289,7 +289,7 @@ static void png_handle_row(PNGDecContext *s) ...@@ -289,7 +289,7 @@ static void png_handle_row(PNGDecContext *s)
else else
last_row = ptr - s->image_linesize; last_row = ptr - s->image_linesize;
png_filter_row(s, ptr, s->crow_buf[0], s->crow_buf + 1, png_filter_row(&s->dsp, ptr, s->crow_buf[0], s->crow_buf + 1,
last_row, s->row_size, s->bpp); last_row, s->row_size, s->bpp);
/* loco lags by 1 row so that it doesn't interfere with top prediction */ /* loco lags by 1 row so that it doesn't interfere with top prediction */
if (s->filter_type == PNG_FILTER_TYPE_LOCO && s->y > 0) { if (s->filter_type == PNG_FILTER_TYPE_LOCO && s->y > 0) {
...@@ -323,7 +323,7 @@ static void png_handle_row(PNGDecContext *s) ...@@ -323,7 +323,7 @@ static void png_handle_row(PNGDecContext *s)
wait for the next one */ wait for the next one */
if (got_line) if (got_line)
break; break;
png_filter_row(s, s->tmp_row, s->crow_buf[0], s->crow_buf + 1, png_filter_row(&s->dsp, s->tmp_row, s->crow_buf[0], s->crow_buf + 1,
s->last_row, s->pass_row_size, s->bpp); s->last_row, s->pass_row_size, s->bpp);
FFSWAP(uint8_t*, s->last_row, s->tmp_row); FFSWAP(uint8_t*, s->last_row, s->tmp_row);
got_line = 1; got_line = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment