mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-07 07:55:41 +00:00
fdsrc: enable large file support in Android
https://bugzilla.gnome.org/show_bug.cgi?id=758980
This commit is contained in:
parent
ef9a101727
commit
db0916d960
1 changed files with 7 additions and 0 deletions
|
@ -88,6 +88,13 @@
|
|||
|
||||
#include "gstfdsrc.h"
|
||||
|
||||
#ifdef __BIONIC__ /* Android */
|
||||
#undef lseek
|
||||
#define lseek lseek64
|
||||
#undef fstat
|
||||
#define fstat fstat64
|
||||
#endif
|
||||
|
||||
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
|
|
Loading…
Reference in a new issue