Go to the documentation of this file.
22 #ifndef AVUTIL_THREAD_H
23 #define AVUTIL_THREAD_H
27 #if HAVE_PTHREADS || HAVE_W32THREADS || HAVE_OS2THREADS
32 #if defined(ASSERT_LEVEL) && ASSERT_LEVEL > 1
36 #define ASSERT_PTHREAD_NORET(func, ...) do { \
37 int ret = func(__VA_ARGS__); \
39 char errbuf[AV_ERROR_MAX_STRING_SIZE] = ""; \
40 av_log(NULL, AV_LOG_FATAL, AV_STRINGIFY(func) \
41 " failed with error: %s\n", \
42 av_make_error_string(errbuf, AV_ERROR_MAX_STRING_SIZE, \
48 #define ASSERT_PTHREAD(func, ...) do { \
49 ASSERT_PTHREAD_NORET(func, __VA_ARGS__); \
53 static inline int strict_pthread_join(
pthread_t thread,
void **value_ptr)
64 ASSERT_PTHREAD_NORET(pthread_mutexattr_init, &local_attr);
65 ASSERT_PTHREAD_NORET(pthread_mutexattr_settype, &local_attr, PTHREAD_MUTEX_ERRORCHECK);
67 ASSERT_PTHREAD_NORET(pthread_mutexattr_destroy, &local_attr);
112 static inline int strict_pthread_once(
pthread_once_t *once_control,
void (*init_routine)(
void))
114 ASSERT_PTHREAD(
pthread_once, once_control, init_routine);
117 #define pthread_join strict_pthread_join
118 #define pthread_mutex_init strict_pthread_mutex_init
119 #define pthread_mutex_destroy strict_pthread_mutex_destroy
120 #define pthread_mutex_lock strict_pthread_mutex_lock
121 #define pthread_mutex_unlock strict_pthread_mutex_unlock
122 #define pthread_cond_init strict_pthread_cond_init
123 #define pthread_cond_destroy strict_pthread_cond_destroy
124 #define pthread_cond_signal strict_pthread_cond_signal
125 #define pthread_cond_broadcast strict_pthread_cond_broadcast
126 #define pthread_cond_wait strict_pthread_cond_wait
127 #define pthread_once strict_pthread_once
130 #elif HAVE_OS2THREADS
136 #define AVMutex pthread_mutex_t
137 #define AV_MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
139 #define ff_mutex_init pthread_mutex_init
140 #define ff_mutex_lock pthread_mutex_lock
141 #define ff_mutex_unlock pthread_mutex_unlock
142 #define ff_mutex_destroy pthread_mutex_destroy
144 #define AVOnce pthread_once_t
145 #define AV_ONCE_INIT PTHREAD_ONCE_INIT
147 #define ff_thread_once(control, routine) pthread_once(control, routine)
152 #define AV_MUTEX_INITIALIZER 0
160 #define AV_ONCE_INIT 0
static av_always_inline int pthread_join(pthread_t thread, void **value_ptr)
static int ff_mutex_init(AVMutex *mutex, const void *attr)
static av_always_inline int pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr)
static int ff_mutex_unlock(AVMutex *mutex)
static int ff_thread_once(char *control, void(*routine)(void))
static av_always_inline int pthread_cond_broadcast(pthread_cond_t *cond)
static av_always_inline int pthread_once(pthread_once_t *once_control, void(*init_routine)(void))
#define pthread_mutex_unlock(a)
static int ff_mutex_destroy(AVMutex *mutex)
static int ff_mutex_lock(AVMutex *mutex)
static av_always_inline int pthread_cond_destroy(pthread_cond_t *cond)
static av_always_inline int pthread_mutex_destroy(pthread_mutex_t *mutex)
static av_always_inline int pthread_cond_signal(pthread_cond_t *cond)
static av_always_inline int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
static av_always_inline int pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr)
int(* cond)(enum AVPixelFormat pix_fmt)
#define pthread_mutex_lock(a)