From cfe4e0e2f8cdddc2d50520a286519ea4ea1635fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 24 Jan 2014 15:28:08 +0200 Subject: [PATCH] Remove duplicate defines These are defined identically just a few lines above. --- codec/common/macros.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/codec/common/macros.h b/codec/common/macros.h index 6ec60183..2abecda2 100644 --- a/codec/common/macros.h +++ b/codec/common/macros.h @@ -65,7 +65,6 @@ _tp (*_nm)[(_cy)] = (_tp (*)[(_cy)])_nm ## _tEmP_al; -///////////// from encoder #if defined(_MSC_VER) #if(_MSC_VER < 1700) @@ -97,22 +96,10 @@ __declspec(align(alignment)) type name[(sizex)*(sizey)] __declspec(align(alignment)) type name[(size)] #endif//#if _MACH_PLATFORM -#if defined(_MSC_VER) -#if _MSC_VER < 1700 -#define inline __inline -#endif -// #define __align8(t,v) __declspec(align(8)) t v -#define __align16(t,v) __declspec(align(16)) t v -#elif defined(__GNUC__) -// #define __align8(t,v) t v __attribute__ ((aligned (8))) -#define __align16(t,v) t v __attribute__ ((aligned (16))) - #if defined(APPLE_IOS) #define inline //For iOS platform #endif -#endif//_MSC_VER - #if !defined(SIZEOFRGB24) #define SIZEOFRGB24(cx, cy) (3 * (cx) * (cy))