diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-14 23:17:20 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-14 23:36:56 +0200 |
commit | 11928d24fe64c97a5329677ddb9eda44cfca4a56 (patch) | |
tree | f22d67f1b6cd8864af1768b8d7256d63aa9416d3 | |
parent | fb7e78089bf04aa73ba53972e8261bf0bbbb121a (diff) | |
download | ffmpeg-11928d24fe64c97a5329677ddb9eda44cfca4a56.tar.gz |
w32pthreads: Add missing #includes to make header compile standalone
-rw-r--r-- | libavcodec/w32pthreads.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/w32pthreads.h b/libavcodec/w32pthreads.h index ae6ceb91f8..8489f715db 100644 --- a/libavcodec/w32pthreads.h +++ b/libavcodec/w32pthreads.h @@ -39,6 +39,9 @@ #include <windows.h> #include <process.h> +#include "libavutil/internal.h" +#include "libavutil/mem.h" + typedef struct { void *handle; void *(*func)(void* arg); |