cache: Remove unused cache_stats function

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32121 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-09-09 16:57:05 +00:00 committed by Uoti Urpala
parent 77fb7376e4
commit 01d8326435
1 changed files with 0 additions and 10 deletions

View File

@ -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) {