1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-28 23:03:03 +04:00

enable IPP ICV support

This commit is contained in:
Alexander Alekhin
2014-04-02 18:32:19 +04:00
parent 2aab7b2926
commit bfc546d23c
8 changed files with 189 additions and 322 deletions
+8 -1
View File
@@ -274,7 +274,14 @@ volatile bool useOptimizedFlag = true;
#ifdef HAVE_IPP
struct IPPInitializer
{
IPPInitializer(void) { ippStaticInit(); }
IPPInitializer(void)
{
#if IPP_VERSION_MAJOR >= 8
ippInit();
#else
ippStaticInit();
#endif
}
};
IPPInitializer ippInitializer;