File x265-fix_enable512.patch of Package x265 (Revision 42)

Currently displaying revision 42 , Show latest

27
 
1
--- a/source/common/cpu.cpp
2
+++ b/source/common/cpu.cpp
3
@@ -110,6 +110,11 @@ const cpu_name_t cpu_names[] =
4
     { "", 0 },
5
 };
6
 
7
+bool detect512()
8
+{
9
+    return(enable512);
10
+}
11
+
12
 #if X265_ARCH_X86
13
 
14
 extern "C" {
15
@@ -123,11 +128,6 @@ uint64_t PFX(cpu_xgetbv)(int xcr);
16
 #pragma warning(disable: 4309) // truncation of constant value
17
 #endif
18
 
19
-bool detect512()
20
-{
21
-    return(enable512);
22
-}
23
-
24
 uint32_t cpu_detect(bool benableavx512 )
25
 {
26
 
27