meta-freescale-distro/recipes-fsl/packagegroups/packagegroup-fsl-gstreamer1.0.bb
Meng Li 4050f49500 packagegroup-fsl-gstreamer1.0: use corrtect plugin name
According to the oe-core commit fb2d28e0315e("gstreamer1.0:
update 1.20.5 -> 1.22.0"), videoconvert/videoscale plugins were
merged into one. So, remove the obsolete plugin name and use
the corrtect one.

Signed-off-by: Meng Li <Meng.Li@windriver.com>
2023-06-07 08:48:26 -03:00

120 lines
3.6 KiB
BlitzBasic

DESCRIPTION = "Package group used by FSL Community to provide audio, video, networking and debug \
GStreamer plugins with the required hardware acceleration (if supported by the SoC)."
SUMMARY = "FSL Community package group - set of commonly used GStreamer 1.0 plugins"
PACKAGE_ARCH = "${MACHINE_ARCH}"
inherit packagegroup
PACKAGES += " \
${PN}-base \
${PN}-audio \
${PN}-video \
${PN}-video-bad \
${PN}-debug \
${PN}-network-base \
${PN}-network \
"
MACHINE_GSTREAMER_1_0_PLUGIN ?= ""
RDEPENDS:${PN} = " \
${PN}-audio \
${PN}-video \
${PN}-network-base \
${PN}-debug \
"
# List of X11 specific plugins
GST_X11_PACKAGES = " \
gstreamer1.0-plugins-base-ximagesink \
gstreamer1.0-plugins-base-xvimagesink \
"
# List of Wayland specific plugins
GST_WAYLAND_PACKAGES = " \
gstreamer1.0-plugins-bad-waylandsink \
"
# basic plugins required in virtually every pipeline
RDEPENDS:${PN}-base = " \
gstreamer1.0 \
gstreamer1.0-plugins-base-playback \
${@bb.utils.contains('DISTRO_FEATURES', 'alsa', 'gstreamer1.0-plugins-base-alsa', '', d)} \
gstreamer1.0-plugins-base-audioconvert \
gstreamer1.0-plugins-base-audioresample \
gstreamer1.0-plugins-base-gio \
gstreamer1.0-plugins-base-typefindfunctions \
gstreamer1.0-plugins-base-videoconvertscale \
gstreamer1.0-plugins-base-volume \
gstreamer1.0-plugins-good-autodetect \
${MACHINE_GSTREAMER_1_0_PLUGIN} \
${@bb.utils.contains("MACHINE_GSTREAMER_1_0_PLUGIN", "imx-gst1.0-plugin", "imx-gst1.0-plugin-gplay", "", d)} \
${@bb.utils.contains("MACHINE_GSTREAMER_1_0_PLUGIN", "imx-gst1.0-plugin", "imx-gst1.0-plugin-grecorder", "", d)} \
"
RRECOMMENDS:${PN}-base = " \
${@bb.utils.contains('DISTRO_FEATURES', 'x11', '${GST_X11_PACKAGES}', \
bb.utils.contains('DISTRO_FEATURES', 'wayland', \
'${GST_WAYLAND_PACKAGES}', '', d), d)} \
"
# Basic audio plugins: parsers, demuxers, decoders
RDEPENDS:${PN}-audio = " \
${PN}-base \
gstreamer1.0-plugins-base-ogg \
gstreamer1.0-plugins-good-audioparsers \
gstreamer1.0-plugins-good-flac \
gstreamer1.0-plugins-good-icydemux \
gstreamer1.0-plugins-good-id3demux \
gstreamer1.0-plugins-good-speex \
gstreamer1.0-plugins-good-wavparse \
"
# Basic video plugins: parsers, demuxers
RDEPENDS:${PN}-video = " \
${PN}-base \
gstreamer1.0-plugins-base-subparse \
gstreamer1.0-plugins-base-theora \
gstreamer1.0-plugins-good-avi \
gstreamer1.0-plugins-good-flv \
gstreamer1.0-plugins-good-isomp4 \
gstreamer1.0-plugins-good-matroska \
"
RRECOMMENDS:${PN}-video = " \
${PN}-audio \
"
# Additional video plugins from the -bad collection
RDEPENDS:${PN}-video-bad = " \
${PN}-video \
gstreamer1.0-plugins-bad-mpegpsdemux \
gstreamer1.0-plugins-bad-mpegtsdemux \
gstreamer1.0-plugins-bad-videoparsersbad \
"
# Plugins used for diagnostics and debugging of pipelines
RDEPENDS:${PN}-debug = " \
${PN}-base \
gstreamer1.0-plugins-base-audiotestsrc \
gstreamer1.0-plugins-base-videotestsrc \
gstreamer1.0-plugins-good-debug \
gstreamer1.0-plugins-good-navigationtest \
"
# Basic networking plugins required by most pipelines that receive and/or send data
RDEPENDS:${PN}-network-base = " \
gstreamer1.0-plugins-base-tcp \
gstreamer1.0-plugins-good-soup \
gstreamer1.0-plugins-good-udp \
"
# Additional networking plugins
RDEPENDS:${PN}-network = " \
${PN}-network-base \
gstreamer1.0-plugins-good-rtp \
gstreamer1.0-plugins-good-rtpmanager \
gstreamer1.0-plugins-good-rtsp \
"