Remove unnecessary double spaces and tabs in ifdef directives

This commit is contained in:
Martin Storsjö
2015-04-27 15:35:56 +03:00
parent baf93a340e
commit f324c354b1
20 changed files with 26 additions and 26 deletions

View File

@@ -776,12 +776,12 @@ void PerformDeblockingFilter (sWelsEncCtx* pEnc) {
void WelsBlockFuncInit (PSetNoneZeroCountZeroFunc* pfSetNZCZero, int32_t iCpu) {
*pfSetNZCZero = WelsNonZeroCount_c;
#ifdef HAVE_NEON
#ifdef HAVE_NEON
if (iCpu & WELS_CPU_NEON) {
*pfSetNZCZero = WelsNonZeroCount_neon;
}
#endif
#ifdef HAVE_NEON_AARCH64
#ifdef HAVE_NEON_AARCH64
if (iCpu & WELS_CPU_NEON) {
*pfSetNZCZero = WelsNonZeroCount_AArch64_neon;
}