-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing gstreamer1.0-plugins-base introspection files (.typelib) #26
Comments
In Mendel the way it's done is that introspection is explicitly disabled in the gstreamer imx package (https://coral.googlesource.com/imx-gst-plugins-base-debian/+/refs/heads/master/debian/rules#131) and then edgetpuvision has the appropriate dependency: https://coral.googlesource.com/edgetpuvision/+/refs/heads/release-day/debian/control#14 |
Thanks for the link and for confirming my suspicion :). This is not hard to solve but since there is no concept of |
I have (mostly) enabled introspection, and the build of GstAllocators, with this patch:
The only issue is the "export GIR_EXTRA_LIBS_PATH" do_compile prepend. That line in my patch is put first in the run_compile script, but immediately after it is the original "export GIR_EXTRA_LIBS_PATH" from the freescale bb recipe, overwriting my change. I have not found a way for the bbappend do_compile_prepend to be listed after the do_compile_prepend of the freescale bb recipe. I hacked around it by putting my "export GIR_EXTRA_LIBS_PATH" statement in the freescale bb. |
Maybe it is actually worth sending a patch towards meta-freescale to fix this. |
The error typically manifests it self in something like this,
We can also clearly see that they are missing if we try to search for them:
The
GstGL
,GstVideo
andGstAllocators
are typically provided by the gstreamer1.0-plugins-base package.But we are using gstreamer1.0-plugins-base_1.14.imx which has disabled introspection due to an build error as can be seen here
Pretty much all the demo applications that relate to video streams provided by Coral rely on gstreamer introspection files.
I have looked at how this is built in Mendel OS, but it also has disabled introspection as can be seen here. So I think they only way this can work in Mendel OS is because introspection files are provided as separate package, gir1.2-gst-plugins-base-1.0.
So my conclusion is that the
typelib
files used in Mendel OS are not built from thegstreamer1.0-plugins-base_1.14.imx
and instead are using the upstream files of the same package.Need to figure out a workaround for this in Yocto.
The text was updated successfully, but these errors were encountered: