omx: Always load the OpenMAX IL cores with G_MODULE_BIND_LOCAL

This commit is contained in:
Sebastian Dröge 2013-03-13 09:37:02 +01:00
parent f505dad87a
commit 303b6c4dc5

View file

@ -103,7 +103,8 @@ gst_omx_core_acquire (const gchar * filename)
bcm_host_init (); 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) if (!core->module)
goto load_failed; goto load_failed;