| 44 | #include <stdlib.h> |
| 45 | |
| 46 | int32_t GetCPUCount() { |
| 47 | WelsLogicalProcessInfo pInfo; |
| 48 | pInfo.ProcessorCount = 1; |
| 49 | WelsQueryLogicalProcessInfo (&pInfo); |
| 50 | return pInfo.ProcessorCount; |
| 51 | } |
| 52 | |
| 53 | int ThreadCreate (SWelsDecThread* t, LPWELS_THREAD_ROUTINE tf, void* ta) { |
| 54 | WELS_THREAD_ATTR attr = 0; |
no test coverage detected