mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 00:02:52 +00:00
w32pthreads: remove some remaining superfluous checks
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
cf57cb3ae4
commit
613f789c19
@ -39,11 +39,6 @@
|
|||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <process.h>
|
#include <process.h>
|
||||||
|
|
||||||
#if _WIN32_WINNT < 0x0600 && defined(__MINGW32__)
|
|
||||||
#undef MemoryBarrier
|
|
||||||
#define MemoryBarrier __sync_synchronize
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "libavutil/attributes.h"
|
#include "libavutil/attributes.h"
|
||||||
#include "libavutil/common.h"
|
#include "libavutil/common.h"
|
||||||
#include "libavutil/internal.h"
|
#include "libavutil/internal.h"
|
||||||
@ -63,10 +58,8 @@ typedef CONDITION_VARIABLE pthread_cond_t;
|
|||||||
#define PTHREAD_MUTEX_INITIALIZER SRWLOCK_INIT
|
#define PTHREAD_MUTEX_INITIALIZER SRWLOCK_INIT
|
||||||
#define PTHREAD_COND_INITIALIZER CONDITION_VARIABLE_INIT
|
#define PTHREAD_COND_INITIALIZER CONDITION_VARIABLE_INIT
|
||||||
|
|
||||||
#if _WIN32_WINNT >= 0x0600
|
|
||||||
#define InitializeCriticalSection(x) InitializeCriticalSectionEx(x, 0, 0)
|
#define InitializeCriticalSection(x) InitializeCriticalSectionEx(x, 0, 0)
|
||||||
#define WaitForSingleObject(a, b) WaitForSingleObjectEx(a, b, FALSE)
|
#define WaitForSingleObject(a, b) WaitForSingleObjectEx(a, b, FALSE)
|
||||||
#endif
|
|
||||||
|
|
||||||
static av_unused unsigned __stdcall attribute_align_arg win32thread_worker(void *arg)
|
static av_unused unsigned __stdcall attribute_align_arg win32thread_worker(void *arg)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user