diff --git a/pixman/pixman-compose.c b/pixman/pixman-compose.c index ef49850..9414773 100644 --- a/pixman/pixman-compose.c +++ b/pixman/pixman-compose.c @@ -684,7 +684,7 @@ fbFetch_yuy2 (bits_image_t *pict, int x, int line, int width, uint32_t *buffer) static FASTCALL void fbFetch_yv12 (bits_image_t *pict, int x, int line, int width, uint32_t *buffer) { - YV12_SETUP(pict); + YV12_SETUP(pict) uint8_t *pY = YV12_Y (line); uint8_t *pU = YV12_U (line); uint8_t *pV = YV12_V (line); @@ -1208,7 +1208,7 @@ fbFetchPixel_yuy2 (bits_image_t *pict, int offset, int line) static FASTCALL uint32_t fbFetchPixel_yv12 (bits_image_t *pict, int offset, int line) { - YV12_SETUP(pict); + YV12_SETUP(pict) int16_t y = YV12_Y (line)[offset] - 16; int16_t u = YV12_U (line)[offset >> 1] - 128; int16_t v = YV12_V (line)[offset >> 1] - 128;