-
I've almost got my project 100% working. I have a custom C++ application that uses GStreamer and some of the GStreamer "bad" plugins. Earlier today my custom application built as part of the meta-tegra demo distro image and I ran it on my Jetson but if failed to find some of these "bad" plugins I need, so after various reading on the web I thought I might need a bbappends file specifying these plugins. So, I made a a bbappend file named gstreamer1.0-plugins-bad_1.1%.bbappend and it simply contains one line: So, after some more web reading I thought maybe I need to include the meta-multimedia layer so I added this line to bblayers.conf: It seems this has gotten me closer to success as I noticed some of my specified plugins being built, but it's failing when trying to build gstreamer-tests:
Earlier in the build I see these warnings:
It seems gstreamer-tests are failing to build to due to the missing "waylandsink" plug-in, however, I'm not sure why the waylandsink package is invalid as the warning says. Anyone have any ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
I think this is your problem, as indicated by the Also note that in the demo distro, by default we use gstreamer 1.14, and that doesn't appear to have SCTP support. You can modify the distro's configuration file to remove the |
Beta Was this translation helpful? Give feedback.
-
Thanks @madisongh as you suggested I updated "layers/meta-tegrademo/conf/distro/tegrademo.conf" and commented out line 36 so it now looks like this:
I then changed my gstreamer1.0-plugins-bad_1.1%.bbappend to PACKAGECONFIG += " webrtc webrtcdsp srtp sctp dtls wayland". However, now opencv is failing to build. I've pasted the bitbake output below but it's not clear to me what the problem is.
|
Beta Was this translation helpful? Give feedback.
Thanks @madisongh as you suggested I updated "layers/meta-tegrademo/conf/distro/tegrademo.conf" and commented out line 36 so it now looks like this:
I then changed my gstreamer1.0-plugins-bad_1.1%.bbappend to PACKAGECONFIG += " webrtc webrtcdsp srtp sctp dtls wayland".
However, now opencv is failing to build. I've pasted the bitbake output below but i…