From 01d8326435897b0725a37f67ae1c705cd420bbea Mon Sep 17 00:00:00 2001 From: diego Date: Thu, 9 Sep 2010 16:57:05 +0000 Subject: cache: Remove unused cache_stats function git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32121 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/cache2.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'stream') diff --git a/stream/cache2.c b/stream/cache2.c index 37d054990a..3aa24df64d 100644 --- a/stream/cache2.c +++ b/stream/cache2.c @@ -104,13 +104,6 @@ static void cache_wakeup(stream_t *s) #endif } -static void cache_stats(cache_vars_t *s) -{ - int newb=s->max_filepos-s->read_filepos; // new bytes in the buffer - mp_msg(MSGT_CACHE,MSGL_INFO,"0x%06X [0x%06X] 0x%06X ",(int)s->min_filepos,(int)s->read_filepos,(int)s->max_filepos); - mp_msg(MSGT_CACHE,MSGL_INFO,"%3d %% (%3d%%)\n",100*newb/s->buffer_size,100*min_fill/s->buffer_size); -} - static int cache_read(cache_vars_t *s, unsigned char *buf, int size) { int total=0; @@ -388,7 +381,6 @@ static void cache_mainloop(cache_vars_t *s) { #endif } else sleep_count = 0; -// cache_stats(s->cache_data); } while (cache_execute_control(s)); } @@ -500,8 +492,6 @@ int cache_stream_fill_buffer(stream_t *s){ int sector_size; if(!s->cache_pid) return stream_fill_buffer(s); -// cache_stats(s->cache_data); - if(s->pos!=((cache_vars_t*)s->cache_data)->read_filepos) mp_msg(MSGT_CACHE,MSGL_ERR,"!!! read_filepos differs!!! report this bug...\n"); sector_size = ((cache_vars_t*)s->cache_data)->sector_size; if (sector_size > STREAM_MAX_SECTOR_SIZE) { -- cgit v1.2.3