summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorClaudio Ciccani <klan@users.sourceforge.net>2006-12-22 16:38:15 +0000
committerClaudio Ciccani <klan@users.sourceforge.net>2006-12-22 16:38:15 +0000
commitefab2aab1e401c4a7ed564ab5535ba367bce29ed (patch)
treee928b852d827a2e930bd411a976b0da17f6d4060 /src
parent4d3ead5b20de46118087552ea6db715720f8374e (diff)
downloadxine-lib-efab2aab1e401c4a7ed564ab5535ba367bce29ed.tar.gz
xine-lib-efab2aab1e401c4a7ed564ab5535ba367bce29ed.tar.bz2
Removed INPUT_CAP_NOCACHE.
CVS patchset: 8432 CVS date: 2006/12/22 16:38:15
Diffstat (limited to 'src')
-rw-r--r--src/input/input_plugin.h10
-rw-r--r--src/xine-engine/xine.c5
2 files changed, 2 insertions, 13 deletions
diff --git a/src/input/input_plugin.h b/src/input/input_plugin.h
index 146207e76..f686f2227 100644
--- a/src/input/input_plugin.h
+++ b/src/input/input_plugin.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_plugin.h,v 1.61 2006/12/18 21:22:45 klan Exp $
+ * $Id: input_plugin.h,v 1.62 2006/12/22 16:38:15 klan Exp $
*/
#ifndef HAVE_INPUT_PLUGIN_H
@@ -297,14 +297,6 @@ struct input_plugin_s {
#define INPUT_CAP_RIP_FORBIDDEN 0x00000100
-/*
- * INPUT_CAP_NOCACHE:
- * means that buffered input must not be used.
- * (i.e. disable input_cache internal plugin)
- */
-
-#define INPUT_CAP_NOCACHE 0x00000200
-
#define INPUT_IS_SEEKABLE(input) (((input)->get_capabilities(input) & INPUT_CAP_SEEKABLE) != 0)
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c
index 63afc86d3..f5583a52f 100644
--- a/src/xine-engine/xine.c
+++ b/src/xine-engine/xine.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine.c,v 1.339 2006/12/19 19:10:52 dsalt Exp $
+ * $Id: xine.c,v 1.340 2006/12/22 16:38:15 klan Exp $
*/
/*
@@ -777,9 +777,6 @@ static int open_internal (xine_stream_t *stream, const char *mrl) {
return 0;
}
- if (stream->input_plugin->get_capabilities(stream->input_plugin) & INPUT_CAP_NOCACHE)
- no_cache = 1;
-
if (*stream_setup) {
while (stream_setup && *stream_setup && *(++stream_setup)) {