Hi Sir,
I am using iMX8M Mini and Yocto imx-linux-hardknott imx-5.10.52 version.
But default GStreamer provided in iMX yocto does not support the GStreamer C application it only supports the command line.
Hence I need to install and compile GStreamer using iMX yocto.
To do that I did the following steps -
1) I added the following code to 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"
2) After that I compiled and build the SDK and flashed it to iMX board.
but when I try 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>
It seems like even GStreamer is compiled successfully but the header files are missing on SDK.
please suggest to me what I am missing and how can I cross-compile the GStreamer with iMX yocto
NOTE:->
I am doing the following steps to compile the iMX yocto ->
DISTRO=fsl-imx-xwayland MACHINE=imx8mm-lpddr4-evk source imx-setup-release.sh -b build-xwayland
bitbake imx-image-full
Thanks