summaryrefslogtreecommitdiff
path: root/gst/gstregistry.c
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2010-01-08 20:56:18 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-01-20 01:48:56 +0000
commit9909d3312fc411f95088ca23119811385a80c210 (patch)
treec2269f5270df523ac0ae48e97d379830990b0383 /gst/gstregistry.c
parent087aa6ced43d84abb487d1c386b62232c6d4d4fa (diff)
pluginloader: disable external plugin loader on Windows until it is ported properly
See #597662.
Diffstat (limited to 'gst/gstregistry.c')
-rw-r--r--gst/gstregistry.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gst/gstregistry.c b/gst/gstregistry.c
index 9e44031f72..a4048dae07 100644
--- a/gst/gstregistry.c
+++ b/gst/gstregistry.c
@@ -1003,6 +1003,12 @@ gst_registry_scan_plugin_file (GstRegistryScanContext * context,
gboolean changed = FALSE;
GstPlugin *newplugin = NULL;
+ #ifdef G_OS_WIN32
+ /* Disable external plugin loader on Windows until it is ported properly. */
+ context->helper_state = REGISTRY_SCAN_HELPER_DISABLED;
+ #endif
+
+
/* Have a plugin to load - see if the scan-helper needs starting */
if (context->helper_state == REGISTRY_SCAN_HELPER_NOT_STARTED) {
GST_DEBUG ("Starting plugin scanner for file %s", filename);