22 #ifndef AVFORMAT_OS_SUPPORT_H
23 #define AVFORMAT_OS_SUPPORT_H
49 # define lseek(f,p,w) _lseeki64((f), (p), (w))
54 # define stat win32_stat
70 unsigned short st_mode;
84 # define fstat win32_fstat
95 # define lseek(f,p,w) lseek64((f), (p), (w))
101 if (path[0] && path[1] ==
':')
109 #define S_IRUSR S_IREAD
112 #define S_IWUSR S_IWRITE
118 #define SHUT_RD SD_RECEIVE
119 #define SHUT_WR SD_SEND
120 #define SHUT_RDWR SD_BOTH
122 #include <sys/socket.h>
123 #if !defined(SHUT_RD)
131 typedef int socklen_t;
135 #if !HAVE_CLOSESOCKET
136 #define closesocket close
140 typedef unsigned long nfds_t;
143 #include <winsock2.h>
145 #if !HAVE_STRUCT_POLLFD
153 #define POLLIN 0x0001
154 #define POLLOUT 0x0002
155 #define POLLRDNORM POLLIN
156 #define POLLWRNORM POLLOUT
157 #define POLLRDBAND 0x0008
158 #define POLLWRBAND 0x0010
159 #define POLLPRI 0x0020
162 #define POLLERR 0x0004
163 #define POLLHUP 0x0080
164 #define POLLNVAL 0x1000
168 int ff_poll(
struct pollfd *fds, nfds_t numfds,
int timeout);
179 #define DEF_FS_FUNCTION(name, wfunc, afunc) \
180 static inline int win32_##name(const char *filename_utf8) \
182 wchar_t *filename_w; \
185 if (get_extended_win32_path(filename_utf8, &filename_w)) \
190 ret = wfunc(filename_w); \
191 av_free(filename_w); \
196 return afunc(filename_utf8); \
199 DEF_FS_FUNCTION(unlink, _wunlink, _unlink)
200 DEF_FS_FUNCTION(mkdir, _wmkdir, _mkdir)
201 DEF_FS_FUNCTION(rmdir, _wrmdir , _rmdir)
203 static inline int win32_access(
const char *filename_utf8,
int mode)
207 if (get_extended_win32_path(filename_utf8, &filename_w))
211 ret = _waccess(filename_w,
mode);
215 return _access(filename_utf8,
mode);
218 static inline void copy_stat(
struct _stat64 *crtstat,
struct win32_stat *buf)
220 buf->st_dev = crtstat->st_dev;
221 buf->st_ino = crtstat->st_ino;
222 buf->st_mode = crtstat->st_mode;
223 buf->st_nlink = crtstat->st_nlink;
224 buf->st_uid = crtstat->st_uid;
225 buf->st_gid = crtstat->st_gid;
226 buf->st_rdev = crtstat->st_rdev;
227 buf->st_size = crtstat->st_size;
228 buf->st_atime = crtstat->st_atime;
229 buf->st_mtime = crtstat->st_mtime;
230 buf->st_ctime = crtstat->st_ctime;
233 static inline int win32_stat(
const char *filename_utf8,
struct win32_stat *buf)
235 struct _stat64 crtstat = { 0 };
239 if (get_extended_win32_path(filename_utf8, &filename_w))
243 ret = _wstat64(filename_w, &crtstat);
246 ret = _stat64(filename_utf8, &crtstat);
248 copy_stat(&crtstat, buf);
253 static inline int win32_fstat(
int fd,
struct win32_stat *buf)
255 struct _stat64 crtstat = { 0 };
258 ret = _fstat64(fd, &crtstat);
260 copy_stat(&crtstat, buf);
265 static inline int win32_rename(
const char *src_utf8,
const char *dest_utf8)
267 wchar_t *src_w, *dest_w;
270 if (get_extended_win32_path(src_utf8, &src_w))
272 if (get_extended_win32_path(dest_utf8, &dest_w)) {
276 if (!src_w || !dest_w) {
282 ret = MoveFileExW(src_w, dest_w, MOVEFILE_REPLACE_EXISTING);
293 ret = MoveFileExA(src_utf8, dest_utf8, MOVEFILE_REPLACE_EXISTING);
305 ret = rename(src_utf8, dest_utf8);
310 #define mkdir(a, b) win32_mkdir(a)
311 #define rename win32_rename
312 #define rmdir win32_rmdir
313 #define unlink win32_unlink
314 #define access win32_access