From ed8211b89caaadd3360b8b5a90fc809a0aa48483 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 9 Apr 2006 18:16:29 +0000 Subject: avoid cache fill status overflow with caches > ca. 20 MB git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18068 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/cache2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmpdemux/cache2.c b/libmpdemux/cache2.c index 6b44598dd0..6fbf19c5f9 100644 --- a/libmpdemux/cache2.c +++ b/libmpdemux/cache2.c @@ -110,7 +110,7 @@ int cache_read(cache_vars_t* s,unsigned char* buf,int size){ total+=len; } - cache_fill_status=100*(s->max_filepos-s->read_filepos)/s->buffer_size; + cache_fill_status=(s->max_filepos-s->read_filepos)/(s->buffer_size / 100); return total; } -- cgit v1.2.3