mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
support files >2GB on MinGW
patch by Ramiro Polla, angustia arrozcru.no-ip org Originally committed as revision 7362 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d951bb9a5c
commit
acb3b537f3
@ -27,6 +27,7 @@
|
||||
* miscellaneous OS support macros and functions.
|
||||
*
|
||||
* - usleep() (Win32, BeOS, OS/2)
|
||||
* - lseek() (Win32)
|
||||
* - floatf() (OS/2)
|
||||
* - strcasecmp() (OS/2)
|
||||
*/
|
||||
@ -35,6 +36,8 @@
|
||||
__declspec(dllimport) void __stdcall Sleep(unsigned long dwMilliseconds);
|
||||
// # include <windows.h>
|
||||
# define usleep(t) Sleep((t) / 1000)
|
||||
# include <fcntl.h>
|
||||
# define lseek(f,p,w) _lseeki64((f), (p), (w))
|
||||
#endif
|
||||
|
||||
#ifdef __BEOS__
|
||||
|
Loading…
Reference in New Issue
Block a user