mirror of
https://git.yoctoproject.org/poky
synced 2026-04-04 14:02:22 +02:00
gstreamer1.0-plugins-XXX: control orc PACKAGECONFIG via GSTREAMER_ORC
Orc enables runtime JIT compilation of data processing routines from Orc bytecode to SIMD instructions for various architectures (currently SSE, MMX, MIPS, Altivec and NEON are supported). https://cgit.freedesktop.org/gstreamer/orc/tree/README Provide a convenient way to globally control the orc PACKAGECONFIG option for all four gstreamer-1.0-plugins-XXX recipes. (From OE-Core rev: da5bc7c637668d284e58f7b7af5abfde47120a03) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
083c63dddf
commit
55d4849e80
@@ -13,11 +13,12 @@ PACKAGECONFIG_GL ?= "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gles2',
|
||||
# gtk is not in the PACKAGECONFIG variable by default until
|
||||
# the transition to gtk+3 is finished
|
||||
PACKAGECONFIG ??= " \
|
||||
${GSTREAMER_ORC} \
|
||||
${PACKAGECONFIG_GL} \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)} \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', '', d)} \
|
||||
bz2 curl dash dtls hls neon orc rsvg sbc smoothstreaming sndfile uvch264 \
|
||||
bz2 curl dash dtls hls neon rsvg sbc smoothstreaming sndfile uvch264 \
|
||||
"
|
||||
|
||||
PACKAGECONFIG[assrender] = "--enable-assrender,--disable-assrender,libass"
|
||||
|
||||
@@ -7,9 +7,10 @@ DEPENDS += "iso-codes util-linux zlib"
|
||||
PACKAGES_DYNAMIC =+ "^libgst.*"
|
||||
|
||||
PACKAGECONFIG ??= " \
|
||||
${GSTREAMER_ORC} \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'alsa', 'alsa', '', d)} \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
|
||||
gio-unix-2.0 ivorbis ogg orc pango theora vorbis \
|
||||
gio-unix-2.0 ivorbis ogg pango theora vorbis \
|
||||
"
|
||||
|
||||
X11DEPENDS = "virtual/libx11 libsm libxrender libxv"
|
||||
|
||||
@@ -5,9 +5,10 @@ LICENSE = "GPLv2+ & LGPLv2.1+"
|
||||
DEPENDS += "gstreamer1.0-plugins-base libcap zlib bzip2"
|
||||
|
||||
PACKAGECONFIG ??= " \
|
||||
${GSTREAMER_ORC} \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'pulseaudio', 'pulseaudio', '', d)} \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
|
||||
cairo flac gdk-pixbuf gudev jpeg libpng orc soup speex taglib v4l2 \
|
||||
cairo flac gdk-pixbuf gudev jpeg libpng soup speex taglib v4l2 \
|
||||
"
|
||||
|
||||
X11DEPENDS = "virtual/libx11 libsm libxrender libxfixes libxdamage"
|
||||
|
||||
@@ -6,7 +6,8 @@ LICENSE_FLAGS = "commercial"
|
||||
DEPENDS += "gstreamer1.0-plugins-base libid3tag"
|
||||
|
||||
PACKAGECONFIG ??= " \
|
||||
a52dec lame mad mpeg2dec orc \
|
||||
${GSTREAMER_ORC} \
|
||||
a52dec lame mad mpeg2dec \
|
||||
"
|
||||
|
||||
PACKAGECONFIG[a52dec] = "--enable-a52dec,--disable-a52dec,liba52"
|
||||
|
||||
@@ -12,6 +12,12 @@ acpaths = "-I ${S}/common/m4 -I ${S}/m4"
|
||||
LIBV = "1.0"
|
||||
require gst-plugins-package.inc
|
||||
|
||||
# Orc enables runtime JIT compilation of data processing routines from Orc
|
||||
# bytecode to SIMD instructions for various architectures (currently SSE, MMX,
|
||||
# MIPS, Altivec and NEON are supported).
|
||||
|
||||
GSTREAMER_ORC ?= "orc"
|
||||
|
||||
PACKAGECONFIG[debug] = "--enable-debug,--disable-debug"
|
||||
PACKAGECONFIG[orc] = "--enable-orc,--disable-orc,orc orc-native"
|
||||
PACKAGECONFIG[valgrind] = "--enable-valgrind,--disable-valgrind,valgrind"
|
||||
|
||||
Reference in New Issue
Block a user