diff options
author | KO Myung-Hun <komh78@gmail.com> | 2012-10-09 19:29:32 +0900 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-09 16:55:36 +0200 |
commit | 3a45688abc5c98c91fc6a1b0b8b68f0eca641aec (patch) | |
tree | 0d4a59b9572f7808dba9adad02e646a7e46638cf | |
parent | 8d2e0e2c7058a3eaf7f45d740be6e93972bbfd68 (diff) | |
download | ffmpeg-3a45688abc5c98c91fc6a1b0b8b68f0eca641aec.tar.gz |
lavc: include os2threads.h in vp8.h if HAVE_OS2THREADS is enabled
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/vp8.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vp8.h b/libavcodec/vp8.h index eb4aad278f..219348785a 100644 --- a/libavcodec/vp8.h +++ b/libavcodec/vp8.h @@ -34,6 +34,8 @@ #include <pthread.h> #elif HAVE_W32THREADS #include "w32pthreads.h" +#elif HAVE_OS2THREADS +#include "os2threads.h" #endif #define VP8_MAX_QUANT 127 |