avcodec/x86/pngdsp: fix off by 1 error
This fixes artifacts in the last pixel of rows with some widths and pixel formats Found-by: Dominique Leroux <Dominique.Leroux@autodesk.com> Tested-by: Dominique Leroux <Dominique.Leroux@autodesk.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -274,7 +274,7 @@ static void png_filter_row(PNGDSPContext *dsp, uint8_t *dst, int filter_type,
|
||||
* the last pixel with bpp=3 */
|
||||
int w = bpp == 4 ? size : size - 3;
|
||||
if (w > i) {
|
||||
dsp->add_paeth_prediction(dst + i, src + i, last + i, w - i, bpp);
|
||||
dsp->add_paeth_prediction(dst + i, src + i, last + i, size - i, bpp);
|
||||
i = w;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user