mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
qtmux: fix includes for lseek
--
This commit is contained in:
parent
61d88bd7da
commit
1fbca3b89d
1 changed files with 5 additions and 0 deletions
|
@ -75,6 +75,7 @@
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/base/gstcollectpads.h>
|
#include <gst/base/gstcollectpads.h>
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
#ifdef G_OS_WIN32
|
#ifdef G_OS_WIN32
|
||||||
#include <io.h> /* lseek, open, close, read */
|
#include <io.h> /* lseek, open, close, read */
|
||||||
#undef lseek
|
#undef lseek
|
||||||
|
@ -83,6 +84,10 @@
|
||||||
#define off_t guint64
|
#define off_t guint64
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_UNISTD_H
|
||||||
|
# include <unistd.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "gstqtmux.h"
|
#include "gstqtmux.h"
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_qt_mux_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_qt_mux_debug);
|
||||||
|
|
Loading…
Reference in a new issue