summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2002-11-01 17:48:18 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2002-11-01 17:48:18 +0000
commit1c97f04c7a1a6b1dbab373bc9b781eb5f35b9d12 (patch)
tree64152bd9443e931b0a2d91a4a5a016167fd6348c
parent6ad17a6ad4318f2c17ea12ff6845b2daa9f2fbd1 (diff)
downloadxine-lib-1c97f04c7a1a6b1dbab373bc9b781eb5f35b9d12.tar.gz
xine-lib-1c97f04c7a1a6b1dbab373bc9b781eb5f35b9d12.tar.bz2
use freshly introduced content detection method
CVS patchset: 3127 CVS date: 2002/11/01 17:48:18
-rw-r--r--src/xine-engine/load_plugins.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c
index 510d5d04a..a6688dd09 100644
--- a/src/xine-engine/load_plugins.c
+++ b/src/xine-engine/load_plugins.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: load_plugins.c,v 1.108 2002/10/31 16:58:16 mroi Exp $
+ * $Id: load_plugins.c,v 1.109 2002/11/01 17:48:18 mroi Exp $
*
*
* Load input/demux/audio_out/video_out/codec plugins
@@ -705,7 +705,8 @@ demux_plugin_t *find_demux_plugin_by_name(xine_stream_t *stream, const char *nam
pthread_mutex_lock(&catalog->lock);
node = xine_list_first_content(catalog->demux);
-
+ stream->content_detection_method = METHOD_EXPLICIT;
+
while (node) {
if (strcasecmp(node->info->id, name) == 0) {
if ((plugin = ((demux_class_t *)node->plugin_class)->open_plugin(node->plugin_class, stream, input))) {