The default GStreamer provided in iMX8 yocto only supports the command line it does not support GStreamer C code hence I need to cross-compile the GStreamer library for iMX8M Mini Yocto.
I tried adding the following lines in iMX yocto local.conf file ->
IMAGE_INSTALL_append += "gstreamer1.0-rtsp-server gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav"
LICENSE_FLAGS_WHITELIST = "commercial"
But seems like GStreamer cross-compilation is not working
when I am trying to compile a simple GStreamer hello world application on my imx8 Mini board then
It gives me an error saying -
fatal error: gst/gst.h: No such file or directory
#include <gst/gst.h>
So any suggestion or step on how I can cross-compile the GStreamer for iMX Yocto?
Is there any yocto recipe available for GStreamer for NXP iMX8?