view osdep/ftello.c @ 22513:8e1736796451

r22413: add xvfwopts compdata and vfw2menc documentation and change to better mencoder example r22499: Improve MPlayerOSX building process: r22402: Explain how to select all DVB channels on a frequency.
author voroshil
date Mon, 12 Mar 2007 17:54:11 +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;
}