1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

Fix OS/2 threading

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Dave Yeo
2012-12-28 17:53:43 -08:00
committed by Michael Niedermayer
parent 53228f47d6
commit 925c9f444f

View File

@@ -28,6 +28,8 @@
#if HAVE_THREADS #if HAVE_THREADS
#if HAVE_PTHREADS #if HAVE_PTHREADS
#include <pthread.h> #include <pthread.h>
#elif HAVE_OS2THREADS
#include "libavcodec/os2threads.h"
#else #else
#include "libavcodec/w32pthreads.h" #include "libavcodec/w32pthreads.h"
#endif #endif