stream: change STREAM_CTRL_GET_SIZE argument type to uint64_t

Update endpos each time libavformat asks for it.

Fixes playback of still downloading files to not stop before we
really reached the end.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@35107 b3059339-0415-0410-9bf9-f77b7e298cf2

Conflicts:
	libmpdemux/demux_lavf.c

Change STREAM_CTRL_GET_SIZE argument type from off_t to
uint64_t.
Also fix the incorrect type of the uint64_res variable.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@35360 b3059339-0415-0410-9bf9-f77b7e298cf2

Conflicts:
	libmpdemux/demux_lavf.c
	libmpdemux/muxer_lavf.c

Note: also merges the "forgotten" cache support from r35107.
This commit is contained in:
reimar
2012-08-18 19:51:58 +00:00
committed by wm4
parent 7759e565b7
commit 51dac4e070
5 changed files with 14 additions and 5 deletions

View File

@@ -77,7 +77,7 @@ static int control(stream_t *s, int cmd, void *arg) {
off_t size = smbc_lseek(s->fd,0,SEEK_END);
smbc_lseek(s->fd,s->pos,SEEK_SET);
if(size != (off_t)-1) {
*((off_t*)arg) = size;
*(uint64_t *)arg = size;
return 1;
}
}