After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 782924 - Python plugin is not loaded with new plugin loader code
Python plugin is not loaded with new plugin loader code
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
unspecified
Other All
: Normal normal
: 1.13.1
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks: 782925
 
 
Reported: 2017-05-21 15:06 UTC by Olivier Crête
Modified: 2017-12-09 13:33 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
plugin: Stop plugin symbol name at first . (894 bytes, patch)
2017-05-21 15:06 UTC, Olivier Crête
committed Details | Review

Description Olivier Crête 2017-05-21 15:06:22 UTC
The python plugin has a file named libgstpython.cpython-35m-x86_64-linux-gnu.so
So the new loader expects a . in the symbol, which is confusing, so stop at the first dot
instead of the last one.
Comment 1 Olivier Crête 2017-05-21 15:06:26 UTC
Created attachment 352299 [details] [review]
plugin: Stop plugin symbol name at first .

This is because the python plugin ends up named
libgstpython.cpython-35m-x86_64-linux-gnu.so so we need to stop
at the first dot.
Comment 2 Olivier Crête 2017-05-21 15:43:34 UTC
Discussed in person at the hackfest, patch approved.

Attachment 352299 [details] pushed as 156ce96 - plugin: Stop plugin symbol name at first .