# HG changeset patch # User bcoudurier # Date 1259708204 0 # Node ID e1a281c9d852eef0e97c3c63d794d1477a8553ff # Parent 0b4951f549d449624d1e7ff2ec044889c6366839 Change ret type to int64_t because url_fseek returns int64_t. This fixes seeking in files > 2gb. Patch by Sean Soria, sean dot soria at gmail dot com. diff -r 0b4951f549d4 -r e1a281c9d852 utils.c --- a/utils.c Tue Dec 01 20:15:05 2009 +0000 +++ b/utils.c Tue Dec 01 22:56:44 2009 +0000 @@ -1513,7 +1513,8 @@ static int av_seek_frame_generic(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) { - int index, ret; + int index; + int64_t ret; AVStream *st; AVIndexEntry *ie;