aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/pthread.c
diff options
context:
space:
mode:
authorKO Myung-Hun <komh@chollian.net>2011-11-02 00:00:21 +0900
committerMichael Niedermayer <michaelni@gmx.at>2011-11-13 17:33:09 +0100
commitad0bdd2fd26a151404c505a1d610bf95773ae18f (patch)
tree56633a4f978804893bc581b14694c86b9f540ab9 /libavcodec/pthread.c
parent88166fc579772c881c21fa6f63faa2ad49ce38e8 (diff)
downloadffmpeg-ad0bdd2fd26a151404c505a1d610bf95773ae18f.tar.gz
lavc: add supports of OS/2 threads
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/pthread.c')
-rw-r--r--libavcodec/pthread.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c
index 04181e229f..8eff782fcb 100644
--- a/libavcodec/pthread.c
+++ b/libavcodec/pthread.c
@@ -38,6 +38,8 @@
#include <pthread.h>
#elif HAVE_W32THREADS
#include "w32pthreads.h"
+#elif HAVE_OS2THREADS
+#include "os2threads.h"
#endif
typedef int (action_func)(AVCodecContext *c, void *arg);