summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2003-11-23 23:43:35 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2003-11-23 23:43:35 +0000
commitda841dc7965ca990fe92a6c835c292aa5bb2599d (patch)
tree2bd273de87a14cada3bab9901a65cc5eede23ba5
parentbd0fdced046b3b7abd5471aadc1d67190133940a (diff)
downloadxine-lib-da841dc7965ca990fe92a6c835c292aa5bb2599d.tar.gz
xine-lib-da841dc7965ca990fe92a6c835c292aa5bb2599d.tar.bz2
Oops, now it's compiled OK.
CVS patchset: 5777 CVS date: 2003/11/23 23:43:35
-rw-r--r--src/xine-engine/input_rip.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/xine-engine/input_rip.c b/src/xine-engine/input_rip.c
index 84a0858f3..002e040d3 100644
--- a/src/xine-engine/input_rip.c
+++ b/src/xine-engine/input_rip.c
@@ -29,7 +29,7 @@
* - it's possible speeder saving streams in the xine without playing:
* xine stream_mrl#save:file.raw\;noaudio\;novideo
*
- * $Id: input_rip.c,v 1.15 2003/11/23 23:20:58 valtri Exp $
+ * $Id: input_rip.c,v 1.16 2003/11/23 23:43:35 valtri Exp $
*/
/* TODO:
@@ -180,12 +180,9 @@ static uint32_t rip_plugin_get_capabilities(input_plugin_t *this_gen) {
caps = this->main_input_plugin->get_capabilities(this->main_input_plugin);
- if (this->regular && (caps & INPUT_CAP_SEEKABLE) == 0) {
- /* if we have non-seekable input (and we emulate it),
- * don't seek to end of stream when it isn't necessary */
- caps |= INPUT_CAP_SLOW_SEEK;
+ if (this->regular)
caps |= INPUT_CAP_SEEKABLE;
- }
+
if (this->preview) caps |= INPUT_CAP_PREVIEW;
return caps;
}