summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2013-03-13 09:37:02 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2013-03-13 09:37:02 +0100
commit303b6c4dc546db8a196fffb2e6bb57f6837c629a (patch)
tree5583be383dc8928626c911ae9efde21d08734b8d
parentf505dad87aa28dc5311af7238a4fd28cbab9bdd9 (diff)
downloadgst-omx-303b6c4dc546db8a196fffb2e6bb57f6837c629a.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 76d912d..71a9b61 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;