Commit 92a36a6b authored by Vittorio Giovara's avatar Vittorio Giovara

pngdec: correctly indent macros

parent 52269f48
...@@ -159,7 +159,8 @@ void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top, ...@@ -159,7 +159,8 @@ void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top,
} }
} }
#define UNROLL1(bpp, op) { \ #define UNROLL1(bpp, op) \
{ \
r = dst[0]; \ r = dst[0]; \
if (bpp >= 2) \ if (bpp >= 2) \
g = dst[1]; \ g = dst[1]; \
...@@ -179,25 +180,24 @@ void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top, ...@@ -179,25 +180,24 @@ void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top,
continue; \ continue; \
dst[i + 3] = a = op(a, src[i + 3], last[i + 3]); \ dst[i + 3] = a = op(a, src[i + 3], last[i + 3]); \
} \ } \
} }
#define UNROLL_FILTER(op) \ #define UNROLL_FILTER(op) \
if (bpp == 1) \ if (bpp == 1) { \
UNROLL1(1, op) \ UNROLL1(1, op) \
else if (bpp == 2) \ } else if (bpp == 2) { \
UNROLL1(2, op) \ UNROLL1(2, op) \
else if (bpp == 3) \ } else if (bpp == 3) { \
UNROLL1(3, op) \ UNROLL1(3, op) \
else if (bpp == 4) \ } else if (bpp == 4) { \
UNROLL1(4, op) \ UNROLL1(4, op) \
else { \ } else { \
for (; i < size; i += bpp) { \ for (; i < size; i += bpp) { \
int j; \ int j; \
for (j = 0; j < bpp; j++) \ for (j = 0; j < bpp; j++) \
dst[i + j] = op(dst[i + j - bpp], \ dst[i + j] = op(dst[i + j - bpp], src[i + j], last[i + j]); \
src[i + j], last[i + j]); \ } \
} \ }
}
/* NOTE: 'dst' can be equal to 'last' */ /* NOTE: 'dst' can be equal to 'last' */
static void png_filter_row(PNGDSPContext *dsp, uint8_t *dst, int filter_type, static void png_filter_row(PNGDSPContext *dsp, uint8_t *dst, int filter_type,
......
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