summaryrefslogtreecommitdiffstats
path: root/libmpdemux/cache2.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-06 13:09:45 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-06 13:09:45 +0000
commit7844cbc3ce870b0d32d75e36729a89afc50c8aef (patch)
tree578381bb99e969cf8b1a50c6b85cfb94066841ef /libmpdemux/cache2.c
parent20770e8a7da4bd4469fa954e8c7a54c18e495835 (diff)
downloadmpv-7844cbc3ce870b0d32d75e36729a89afc50c8aef.tar.bz2
mpv-7844cbc3ce870b0d32d75e36729a89afc50c8aef.tar.xz
Move conditional compilation into the build system.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18927 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/cache2.c')
-rw-r--r--libmpdemux/cache2.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libmpdemux/cache2.c b/libmpdemux/cache2.c
index 116bd2e9ff..6ad33d8664 100644
--- a/libmpdemux/cache2.c
+++ b/libmpdemux/cache2.c
@@ -1,7 +1,5 @@
#include "config.h"
-#ifdef USE_STREAM_CACHE
-
// Initial draft of my new cache system...
// Note it runs in 2 processes (using fork()), but doesn't requires locking!!
// TODO: seeking, data consistency checking
@@ -367,5 +365,3 @@ int cache_stream_seek_long(stream_t *stream,off_t pos){
mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%"PRIX64" !\n",(int64_t)(pos+newpos));
return 0;
}
-
-#endif