vlc | branch: master | Sébastien Toque <[email protected]> | Mon Jun 18 17:28:30 2012 +0200| [e917fdc8fe8d53f287479b81b49106f2fad9643b] | committer: Rafaël Carré
Android: fix large files support Signed-off-by: Rafaël Carré <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e917fdc8fe8d53f287479b81b49106f2fad9643b --- include/vlc_fs.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/vlc_fs.h b/include/vlc_fs.h index b464bcd..669420c 100644 --- a/include/vlc_fs.h +++ b/include/vlc_fs.h @@ -76,6 +76,10 @@ static inline void vlc_rewinddir( DIR *dir ) # endif #endif +#ifdef __ANDROID__ +# define lseek lseek64 +#endif + struct stat; VLC_API int vlc_stat( const char *filename, struct stat *buf ); _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
