freebsd-ports/multimedia/xmps/files/patch-codecs-video-mpeg3-motion_comp.c
Max Khon e8365b58f8 Fix build with gcc 3.3.1.
Bump PORTREVISION.
2003-10-28 03:31:05 +00:00

20 lines
702 B
C

--- codecs/video/mpeg3/motion_comp.c.orig Tue Oct 28 08:53:27 2003
+++ codecs/video/mpeg3/motion_comp.c Tue Oct 28 08:55:16 2003
@@ -66,7 +66,7 @@
// mc function template
#define MC_FUNC(op,xy) \
-static void motion_comp_##op####xy##_16x16_c (uint8_t * dest, \
+static void motion_comp_##op##xy##_16x16_c (uint8_t * dest, \
uint8_t * ref, \
int stride, \
int height) \
@@ -92,7 +92,7 @@
dest += stride; \
} while (--height); \
} \
-static void motion_comp_##op####xy##_8x8_c (uint8_t * dest, \
+static void motion_comp_##op##xy##_8x8_c (uint8_t * dest, \
uint8_t * ref, \
int stride, \
int height) \