[MPlayer-cvslog] r32121 - trunk/stream/cache2.c
diego
subversion at mplayerhq.hu
Thu Sep 9 18:57:05 CEST 2010
Author: diego
Date: Thu Sep 9 18:57:05 2010
New Revision: 32121
Log:
Remove unused cache_stats function.
Modified:
trunk/stream/cache2.c
Modified: trunk/stream/cache2.c
==============================================================================
--- trunk/stream/cache2.c Thu Sep 9 18:54:35 2010 (r32120)
+++ trunk/stream/cache2.c Thu Sep 9 18:57:05 2010 (r32121)
@@ -105,13 +105,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;
@@ -390,7 +383,6 @@ static void cache_mainloop(cache_vars_t
#endif
} else
sleep_count = 0;
-// cache_stats(s->cache_data);
} while (cache_execute_control(s));
}
@@ -502,8 +494,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) {
More information about the MPlayer-cvslog
mailing list