diff options
author | James Almer <jamrial@gmail.com> | 2018-01-04 00:46:33 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-01-04 15:22:09 -0300 |
commit | 414a49d6710d90c0943c152a8d7bd521e1627125 (patch) | |
tree | b9922af905398930386681a95bdf52e615a8d994 /fftools/ffmpeg.h | |
parent | b4eeffffc8933f04d3a951577b9b8e0b128ef580 (diff) | |
download | ffmpeg-414a49d6710d90c0943c152a8d7bd521e1627125.tar.gz |
ffmpeg: use thread wrappers for the thread message functionality
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 4e73d59082..8195f73e8b 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -25,10 +25,6 @@ #include <stdio.h> #include <signal.h> -#if HAVE_PTHREADS -#include <pthread.h> -#endif - #include "cmdutils.h" #include "libavformat/avformat.h" @@ -45,6 +41,7 @@ #include "libavutil/hwcontext.h" #include "libavutil/pixfmt.h" #include "libavutil/rational.h" +#include "libavutil/thread.h" #include "libavutil/threadmessage.h" #include "libswresample/swresample.h" @@ -415,7 +412,7 @@ typedef struct InputFile { int rate_emu; int accurate_seek; -#if HAVE_PTHREADS +#if HAVE_THREADS AVThreadMessageQueue *in_thread_queue; pthread_t thread; /* thread reading from this file */ int non_blocking; /* reading packets from the thread should not block */ |