From 0cc7195ba1b662c17f4ba706847f3b00e717d875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Mon, 13 Oct 2003 14:52:53 +0000 Subject: Don't find out id3 info in mp3 files saved by RIP from non-seekable inputs. CVS patchset: 5507 CVS date: 2003/10/13 14:52:53 --- src/xine-engine/input_rip.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/xine-engine/input_rip.c') diff --git a/src/xine-engine/input_rip.c b/src/xine-engine/input_rip.c index 3483268d5..e8535bea7 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.6 2003/10/05 10:39:25 valtri Exp $ + * $Id: input_rip.c,v 1.7 2003/10/13 14:52:54 valtri Exp $ */ #ifdef HAVE_CONFIG_H @@ -173,7 +173,13 @@ static uint32_t rip_plugin_get_capabilities(input_plugin_t *this_gen) { uint32_t caps; caps = this->main_input_plugin->get_capabilities(this->main_input_plugin); - if (this->regular) caps |= INPUT_CAP_SEEKABLE; + + 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; + caps |= INPUT_CAP_SEEKABLE; + } if (this->preview) caps |= INPUT_CAP_PREVIEW; return caps; } -- cgit v1.2.3