Mercurial > mplayer.hg
view osdep/ftello.c @ 22924:4822223d8425
small syntax fix: muxrate is expressed in units of 400 bits/second, not 50 bytes per second
author | nicodvb |
---|---|
date | Sun, 08 Apr 2007 09:50:27 +0000 |
parents | e268886eb13d |
children |
line wrap: on
line source
/* * ftello.c * 64-bit version of ftello() for systems which do not have it */ #include "config.h" #include <stdio.h> #include <sys/types.h> off_t ftello(FILE *stream) { fpos_t floc; if (fgetpos(stream, &floc) != 0) return -1; return floc; }