1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-03 01:21:10 +00:00
This commit is contained in:
twinaphex 2018-01-23 03:35:23 +01:00
parent f680f00098
commit 93561a042b

@ -686,8 +686,8 @@ static int png_reverse_filter_adam7_iterate(uint32_t **data_,
const struct png_ihdr *ihdr, const struct png_ihdr *ihdr,
struct rpng_process *pngp) struct rpng_process *pngp)
{ {
int ret = 0; int ret = 0;
bool to_next = pngp->pass_pos < ARRAY_SIZE(passes); bool to_next = pngp->pass_pos < ARRAY_SIZE(passes);
uint32_t *data = *data_; uint32_t *data = *data_;
if (!to_next) if (!to_next)
@ -762,7 +762,7 @@ static int png_reverse_filter_iterate(rpng_t *rpng, uint32_t **data)
if (!rpng) if (!rpng)
return false; return false;
if (rpng->ihdr.interlace) if (rpng->ihdr.interlace && rpng->process)
return png_reverse_filter_adam7(data, &rpng->ihdr, rpng->process); return png_reverse_filter_adam7(data, &rpng->ihdr, rpng->process);
return png_reverse_filter_regular_iterate(data, &rpng->ihdr, rpng->process); return png_reverse_filter_regular_iterate(data, &rpng->ihdr, rpng->process);