mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
omx: Always load the OpenMAX IL cores with G_MODULE_BIND_LOCAL
This commit is contained in:
parent
f505dad87a
commit
303b6c4dc5
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue