view osdep/ftello.c @ 22355:20be7be45f47

implementation of DEMUXER_CTRL_GET_TIME_LENGTH and DEMUXER_CTRL_GET_PERCENT_POS; patch by the usual Hoyos
author nicodvb
date Tue, 27 Feb 2007 22:25:00 +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;
}