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
4
{ "", 0 },
5
};
6
7
+bool detect512()
8
+{
9
+ return(enable512);
10
+}
11
+
12
#if X265_ARCH_X86
13
14
extern "C" {
15
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