mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
filesink: enable large file support on Android
https://bugzilla.gnome.org/show_bug.cgi?id=758980
This commit is contained in:
parent
4347718bf1
commit
ef431cd1e5
1 changed files with 7 additions and 0 deletions
|
@ -70,6 +70,13 @@
|
|||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#ifdef __BIONIC__ /* Android */
|
||||
#undef lseek
|
||||
#define lseek lseek64
|
||||
#undef off_t
|
||||
#define off_t guint64
|
||||
#endif
|
||||
|
||||
#include "gstelements_private.h"
|
||||
#include "gstfilesink.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue