Change-Id: Icd48935357c1ceb2aac4bcdee4e5a57621f61b93
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
/*
* MACROS
*/
+#ifndef ALIGN
#define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
+#endif
#define ALIGN_TO_16B(x) ((((x) + (1 << 4) - 1) >> 4) << 4)
#define ALIGN_TO_32B(x) ((((x) + (1 << 5) - 1) >> 5) << 5)
#define ALIGN_TO_128B(x) ((((x) + (1 << 7) - 1) >> 7) << 7)
#include <gralloc_priv.h>
#endif
+#include "exynos_format.h"
#include "Exynos_OSAL_Semaphore.h"
#include "Exynos_OMX_Baseport.h"
#include "Exynos_OMX_Basecomponent.h"
#include "Exynos_OMX_Macros.h"
#include "Exynos_OSAL_Android.h"
-#include "exynos_format.h"
#include "ExynosVideoApi.h"