summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-12-09 13:28:44 +0000
committerMans Rullgard <mans@mansr.com>2012-12-09 22:21:04 +0000
commit2dd95bd7cfd1acbbac8844739572667f40314b79 (patch)
treedc81ac3c28837068d536dc9b3d9dcdb7754b1c54 /libavcodec
parentd4f8cecc86ea36021b716c3f8ce76a54d7944fc7 (diff)
dsputil: remove unused macro WRAPPER8_16
This macro has never been used. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/dsputil.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h
index 5640f3abea..f9c89069d5 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;\