mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +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/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);
|
||||
|
|
Loading…
Reference in a new issue