filesink: enable large file support on Android

https://bugzilla.gnome.org/show_bug.cgi?id=758980
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2015-12-03 15:04:32 -08:00
parent c0d2c1e793
commit add4526314

View file

@ -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"