ref: 770e48ac2b7cb8600585842a88dc5185cc434ab6
parent: f6b6a0f6aaec95152f1bee5ff09434fb00542ed2
author: Sindre Aamås <saamas@cisco.com>
date: Wed Jun 1 19:21:38 EDT 2016
[Processing] Remove unused align macros The WELS_ALIGN macro here aliases the WELS_ALIGN macro in macros.h which is inconvenient. Just remove these unused macros.
--- a/codec/processing/src/common/util.h
+++ b/codec/processing/src/common/util.h
@@ -83,10 +83,6 @@
#define WELS_CLAMP(x, minv, maxv) WELS_MIN(WELS_MAX(x, minv), maxv)
#define ALIGNBYTES (16) /* Worst case is requiring alignment to an 16 byte boundary */
-#define WELS_ALIGN(iInput) ((iInput+(ALIGNMENT-1)) & ~(ALIGNMENT-1))
-#define WELS_ALIGN2(iInput) ((iInput+1) & ~1)
-#define WELS_ALIGN4(iInput) ((iInput+3) & ~3)
-#define WELS_ALIGN8(iInput) ((iInput+7) & ~7)
#define WelsCastFromPointer(p) (reinterpret_cast<intptr_t>(p))
#define WelsStaticCast(type, p) (static_cast<type>(p))