Use 64 bit numbers for file positions in the seek function in audio demuxer.

Hopefully fixes seeking in wav files in-between 2 and 4 GB.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27938 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-11-16 10:20:58 +00:00
parent 8cc27a3561
commit 49eb5ef4dd
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ static void high_res_mp3_seek(demuxer_t *demuxer,float time) {
static void demux_audio_seek(demuxer_t *demuxer,float rel_seek_secs,float audio_delay,int flags){
sh_audio_t* sh_audio;
stream_t* s;
int base,pos;
int64_t base,pos;
float len;
da_priv_t* priv;