diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-08 20:29:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-08 20:29:59 +0200 |
commit | eee6ad38f99ad38b7d60382f572cbd5542a80c4c (patch) | |
tree | 277b5afb0b4a32c3409ebacc451c0e71ead06006 | |
parent | 550bda741cfe0e471a70e40529a9ab02d31b7049 (diff) | |
download | ffmpeg-eee6ad38f99ad38b7d60382f572cbd5542a80c4c.tar.gz |
avdevice/lavfi: add io.h, should fix msvc build
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavdevice/lavfi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c index f96fe8352c..4fc09d86c8 100644 --- a/libavdevice/lavfi.c +++ b/libavdevice/lavfi.c @@ -45,6 +45,9 @@ #if HAVE_UNISTD_H #include <unistd.h> /* close() */ #endif +#if HAVE_IO_H +#include <io.h> +#endif typedef struct { AVClass *class; ///< class for private options |