Revert "(RPNG) Optimize png_reverse_filter_adam7_deinterlace_pass"

This reverts commit a283b7126189e0f001bbf56252a5103a3a955d3c.
This commit is contained in:
twinaphex 2020-08-19 18:15:24 +02:00
parent 003ff126ce
commit 282d34aeb1

View File

@ -468,13 +468,10 @@ static void png_reverse_filter_adam7_deinterlace_pass(uint32_t *data,
for (y = 0; y < pass_height;
y++, data += ihdr->width * pass->stride_y, input += pass_width)
{
uint32_t *out = data;
const uint32_t *input_ptr = NULL;
uint32_t *out = data;
for ( input_ptr = &input[0]
; input_ptr < input + pass_width
; input_ptr++, out += pass->stride_x)
*out = *input_ptr;
for (x = 0; x < pass_width; x++, out += pass->stride_x)
*out = input[x];
}
}