From 79e20706065c770451578d451313fd3f31a6eaa9 Mon Sep 17 00:00:00 2001 From: Alexander Kapustin Date: Thu, 26 Apr 2012 08:18:01 +0000 Subject: [PATCH] 5 functions from addWeighted_func family were Neon Optimized --- modules/core/src/arithm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/src/arithm.cpp b/modules/core/src/arithm.cpp index 37e3d0de8e..454c65c4a4 100644 --- a/modules/core/src/arithm.cpp +++ b/modules/core/src/arithm.cpp @@ -1984,8 +1984,8 @@ static void addWeighted64f( const double* src1, size_t step1, const double* src2 static BinaryFunc addWeightedTab[] = { - (BinaryFunc)addWeighted8u, (BinaryFunc)addWeighted8s, (BinaryFunc)addWeighted16u, - (BinaryFunc)addWeighted16s, (BinaryFunc)addWeighted32s, (BinaryFunc)addWeighted32f, + (BinaryFunc)GET_OPTIMIZED(addWeighted8u), (BinaryFunc)GET_OPTIMIZED(addWeighted8s), (BinaryFunc)GET_OPTIMIZED(addWeighted16u), + (BinaryFunc)GET_OPTIMIZED(addWeighted16s), (BinaryFunc)GET_OPTIMIZED(addWeighted32s), (BinaryFunc)addWeighted32f, (BinaryFunc)addWeighted64f, 0 };