43 static int win32_open(
const char *filename_utf8,
int oflag,
int pmode)
49 if (get_extended_win32_path(filename_utf8, &filename_w))
54 fd = _wsopen(filename_w, oflag, SH_DENYNO, pmode);
57 if (fd != -1 || (oflag & O_CREAT))
62 return _sopen(filename_utf8, oflag, SH_DENYNO, pmode);
64 #define open win32_open
70 unsigned int mode = 0;
75 mode = va_arg(ap,
unsigned int);
88 if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
111 int avpriv_tempfile(
const char *prefix,
char **filename,
int log_offset,
void *log_ctx)
116 void *ptr= tempnam(
NULL, prefix);
118 ptr= tempnam(
".", prefix);
123 size_t len = strlen(prefix) + 12;
141 fd = mkstemp(*filename);
142 #if defined(_WIN32) || defined (__ANDROID__) || defined(__DJGPP__)
145 fd = mkstemp(*filename);
152 av_log(&file_log_ctx,
AV_LOG_ERROR,
"ff_tempfile: Cannot open temporary file %s\n", *filename);
163 const char *m =
mode;
166 case 'r': access = O_RDONLY;
break;
167 case 'w': access = O_CREAT|O_WRONLY|O_TRUNC;
break;
168 case 'a': access = O_CREAT|O_WRONLY|O_APPEND;
break;
175 access &= ~(O_RDONLY | O_WRONLY);
177 }
else if (*m ==
'b') {
190 return fdopen(fd,
mode);