Skip to content

Commit

Permalink
dsputil: remove unused macro WRAPPER8_16
Browse files Browse the repository at this point in the history
This macro has never been used.

Signed-off-by: Mans Rullgard <[email protected]>
  • Loading branch information
mansr committed Dec 9, 2012
1 parent d4f8cec commit 2dd95bd
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions libavcodec/dsputil.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;\
Expand Down

0 comments on commit 2dd95bd

Please sign in to comment.