summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2013-03-13 09:37:02 +0100
committerJosep Torra <n770galaxy@gmail.com>2013-03-15 08:31:52 +0100
commitaaf694069ff7d35ef384d3febed0176cb19684d6 (patch)
tree677f7a89eaa037f7e55bfc4bfca7f5d40054f24c
parentb49897d74018f0c42a29e9d7a02e9d3496433891 (diff)
downloadgst-omx-aaf694069ff7d35ef384d3febed0176cb19684d6.tar.gz
omx: Always load the OpenMAX IL cores with G_MODULE_BIND_LOCAL
-rw-r--r--omx/gstomx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/omx/gstomx.c b/omx/gstomx.c
index 679b25d..71cba27 100644
--- a/omx/gstomx.c
+++ b/omx/gstomx.c
@@ -103,7 +103,8 @@ gst_omx_core_acquire (const gchar * filename)
bcm_host_init ();
}
- core->module = g_module_open (filename, G_MODULE_BIND_LAZY);
+ core->module =
+ g_module_open (filename, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
if (!core->module)
goto load_failed;