grep qml ...

问题描述 投票:0回答:1
@UncleSav using your own layer, do:

Example your layer is meta-xpto.

Inside the .bbappend add:

gst-inspect-1.0 | grep qmlWith this change, we inform gstreamer1.0-plugins-good that we want to compile with the qt flag and inform the necessary dependencies.

我想在我的应用程序中使用qmlgl插件(qmlglsink, qmlglsrc),但它在图像中不可用。另外,我的环境是基于ARM的板子 - Phytec_nunki。

并没有收到任何结果。

我使用Yocto来构建图像。根据我的理解

CORE_IMAGE_EXTRA_INSTALL += " \
gst-plugins-good-qmlgl\
"

联系

- qmlgl位于 "GStreamer Good Plug-in "一栏,但默认情况下没有启用。

我检查了Yocto下载的gstreamer的源文件--有 "qmlgl "的文件。所以我想我必须在某个配置文件中启用它。
gstreamer yocto bitbake
1个回答
0
投票

那么,有谁有办法解决这个问题吗?

meta-xpto/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_%.bbappend

inherit qmake5_paths

PACKAGECONFIG[qt5] = '--enable-qt \
--with-moc="${OE_QMAKE_PATH_EXTERNAL_HOST_BINS}/moc" \
--with-uic="${OE_QMAKE_PATH_EXTERNAL_HOST_BINS}/uic" \
--with-rcc="${OE_QMAKE_PATH_EXTERNAL_HOST_BINS}/rcc" \
,--disable-qt,gstreamer1.0-plugins-base qtbase qtdeclarative qtbase-native'

PACKAGECONFIG_append = "qt5"

我想在我的应用程序中使用qmlgl插件(qmlglsink, qmlglsrc),但是在图像中没有。另外,我的环境是基于ARM的板子--Phytec_nunki.gst-inspect-1.0。

© www.soinside.com 2019 - 2024. All rights reserved.