[FFmpeg-cvslog] dsputil: remove unused macro WRAPPER8_16

Mans Rullgard git at videolan.org
Mon Dec 10 04:51:02 CET 2012


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Sun Dec  9 13:28:44 2012 +0000| [2dd95bd7cfd1acbbac8844739572667f40314b79] | committer: Mans Rullgard

dsputil: remove unused macro WRAPPER8_16

This macro has never been used.

Signed-off-by: Mans Rullgard <mans at mansr.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2dd95bd7cfd1acbbac8844739572667f40314b79
---

 libavcodec/dsputil.h |    6 ------
 1 file changed, 6 deletions(-)

diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h
index 5640f3a..f9c8906 100644
--- a/libavcodec/dsputil.h
+++ b/libavcodec/dsputil.h
@@ -626,12 +626,6 @@ void ff_dsputil_init_dwt(DSPContext *c);
 #   define LOCAL_ALIGNED_16(t, v, ...) LOCAL_ALIGNED(16, t, v, __VA_ARGS__)
 #endif
 
-#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 WRAPPER8_16_SQ(name8, name16)\
 static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride, int h){\
     int score=0;\



More information about the ffmpeg-cvslog mailing list