# HG changeset patch # User mru # Date 1267885499 0 # Node ID d0230d2b1696e106959ef3f460bdb11451ca238b # Parent 68cffad9f463d68cafddc3340098f87cdf68f8ee Remove DECLARE_ALIGNED_{8,16} macros These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead. diff -r 68cffad9f463 -r d0230d2b1696 mem.h --- a/mem.h Sat Mar 06 12:40:43 2010 +0000 +++ b/mem.h Sat Mar 06 14:24:59 2010 +0000 @@ -49,9 +49,6 @@ #define DECLARE_ASM_CONST(n,t,v) static const t v #endif -#define DECLARE_ALIGNED_16(t, v) DECLARE_ALIGNED(16, t, v) -#define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v) - #if AV_GCC_VERSION_AT_LEAST(3,1) #define av_malloc_attrib __attribute__((__malloc__)) #else