diff dsputil.h @ 6056:558c1fd0ee72 libavcodec

Fix typo in macro name: WARPER8_16_SQ --> WRAPPER8_16_SQ.
author diego
date Fri, 21 Dec 2007 12:38:41 +0000
parents 90de28dfd8d6
children 5077d1562573
line wrap: on
line diff
--- a/dsputil.h	Fri Dec 21 11:50:18 2007 +0000
+++ b/dsputil.h	Fri Dec 21 12:38:41 2007 +0000
@@ -656,13 +656,13 @@
                const FFTSample *input, FFTSample *tmp);
 void ff_mdct_end(MDCTContext *s);
 
-#define WARPER8_16(name8, name16)\
+#define WRAPPER8_16(name8, name16)\
 static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride, int h){\
     return name8(s, dst           , src           , stride, h)\
           +name8(s, dst+8         , src+8         , stride, h);\
 }
 
-#define WARPER8_16_SQ(name8, name16)\
+#define WRAPPER8_16_SQ(name8, name16)\
 static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride, int h){\
     int score=0;\
     score +=name8(s, dst           , src           , stride, 8);\