Commit 98879e06 authored by bcoudurier's avatar bcoudurier

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.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20693 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e1a735eb
......@@ -1513,7 +1513,8 @@ static int av_seek_frame_byte(AVFormatContext *s, int stream_index, int64_t pos,
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment