From 263833b3bfdf936bd2d5596c62ee5e636a796075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Sun, 29 Jun 2014 00:36:29 +0300 Subject: [PATCH] Remove the now unused macros __align16, ALIGNED_DECLARE_MATRIX_1D and ALIGNED_DECLARE_MATRIX_2D --- codec/common/inc/macros.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/codec/common/inc/macros.h b/codec/common/inc/macros.h index 164c4b5e..56778779 100644 --- a/codec/common/inc/macros.h +++ b/codec/common/inc/macros.h @@ -73,20 +73,10 @@ #endif #define ALIGNED_DECLARE( type, var, n ) __declspec(align(n)) type var -#define __align16(t,v) __declspec(align(16)) t v -#define ALIGNED_DECLARE_MATRIX_1D(name,size,type,alignment) \ - __declspec(align(alignment)) type name[(size)] -#define ALIGNED_DECLARE_MATRIX_2D(name,sizex,sizey,type,alignment) \ -__declspec(align(alignment)) type name[(sizex)*(sizey)] #elif defined(__GNUC__) #define ALIGNED_DECLARE( type, var, n ) type var __attribute__((aligned(n))) -#define __align16(t,v) t v __attribute__ ((aligned (16))) -#define ALIGNED_DECLARE_MATRIX_1D(name,size,type,alignment) \ - type name[size] __attribute__((aligned(alignment))) -#define ALIGNED_DECLARE_MATRIX_2D(name,sizex,sizey,type,alignment) \ - type name[(sizex)*(sizey)] __attribute__((aligned(alignment))) #endif//_MSC_VER