Mercurial > mplayer.hg
view osdep/fseeko.c @ 14337:d4a00d0614fb
1.814: sstep is usually inaccurate.
1.815: use a configurable-size ringbuffer instead of a pipe for buffering key events.
1.816: better explain -nodouble.
1.817: Add a file= suboption to set output file. (md5sum)
1.818: keyframes are more like 10 - 20 seconds apart, not 120 (was already corrected)
1.819: Some fixes and better wording, remove alsa9 and alsa1x audio output drivers
and make some numeric options line up properly.
1.820: better mention -vo yuv4mpeg can change output filename
author | kraymer |
---|---|
date | Mon, 03 Jan 2005 21:19:13 +0000 |
parents | cfe440920be2 |
children | 08cac43f1e38 |
line wrap: on
line source
/* * fseeko.c * 64-bit versions of fseeko/ftello() for systems which do not have them */ #include "../config.h" #if !defined(HAVE_FSEEKO) || !defined(HAVE_FTELLO) #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <errno.h> #endif #ifdef WIN32 #define flockfile #define funlockfile #endif /* * On BSD/OS and NetBSD (and perhaps others), off_t and fpos_t are the * same. Standards say off_t is an arithmetic type, but not necessarily * integral, while fpos_t might be neither. * * This is thread-safe on BSD/OS using flockfile/funlockfile. */ #ifndef HAVE_FSEEKO int fseeko(FILE *stream, off_t offset, int whence) { fpos_t floc; struct stat filestat; switch (whence) { case SEEK_CUR: flockfile(stream); if (fgetpos(stream, &floc) != 0) goto failure; floc += offset; if (fsetpos(stream, &floc) != 0) goto failure; funlockfile(stream); return 0; break; case SEEK_SET: if (fsetpos(stream, &offset) != 0) return -1; return 0; break; case SEEK_END: flockfile(stream); if (fstat(fileno(stream), &filestat) != 0) goto failure; floc = filestat.st_size; if (fsetpos(stream, &floc) != 0) goto failure; funlockfile(stream); return 0; break; default: errno = EINVAL; return -1; } failure: funlockfile(stream); return -1; } #endif #ifndef HAVE_FTELLO off_t ftello(FILE *stream) { fpos_t floc; if (fgetpos(stream, &floc) != 0) return -1; return floc; } #endif