diff options
-rw-r--r-- | gst/qtmux/gstqtmux.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gst/qtmux/gstqtmux.c b/gst/qtmux/gstqtmux.c index 430e979f..4b4344b0 100644 --- a/gst/qtmux/gstqtmux.c +++ b/gst/qtmux/gstqtmux.c @@ -75,6 +75,7 @@ #include <gst/gst.h> #include <gst/base/gstcollectpads.h> +#include <sys/types.h> #ifdef G_OS_WIN32 #include <io.h> /* lseek, open, close, read */ #undef lseek @@ -83,6 +84,10 @@ #define off_t guint64 #endif +#ifdef HAVE_UNISTD_H +# include <unistd.h> +#endif + #include "gstqtmux.h" GST_DEBUG_CATEGORY_STATIC (gst_qt_mux_debug); |