diff options
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.20.0.bb')
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.20.0.bb | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.20.0.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.20.0.bb new file mode 100644 index 0000000000..455c9fc480 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.20.0.bb | |||
| @@ -0,0 +1,94 @@ | |||
| 1 | require gstreamer1.0-plugins-common.inc | ||
| 2 | |||
| 3 | DESCRIPTION = "'Base' GStreamer plugins and helper libraries" | ||
| 4 | HOMEPAGE = "https://gstreamer.freedesktop.org/" | ||
| 5 | BUGTRACKER = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/issues" | ||
| 6 | LICENSE = "LGPLv2+" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=69333daa044cb77e486cc36129f7a770" | ||
| 8 | |||
| 9 | SRC_URI = "https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-${PV}.tar.xz \ | ||
| 10 | file://0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch \ | ||
| 11 | file://0003-viv-fb-Make-sure-config.h-is-included.patch \ | ||
| 12 | file://0002-ssaparse-enhance-SSA-text-lines-parsing.patch \ | ||
| 13 | " | ||
| 14 | SRC_URI[sha256sum] = "4cb66fccf730b1037e6533862c2128990912a6db4e5bbd14e0ef914450eb4c7c" | ||
| 15 | |||
| 16 | S = "${WORKDIR}/gst-plugins-base-${PV}" | ||
| 17 | |||
| 18 | DEPENDS += "iso-codes util-linux zlib" | ||
| 19 | |||
| 20 | inherit gobject-introspection | ||
| 21 | |||
| 22 | PACKAGES_DYNAMIC =+ "^libgst.*" | ||
| 23 | |||
| 24 | # opengl packageconfig factored out to make it easy for distros | ||
| 25 | # and BSP layers to choose OpenGL APIs/platforms/window systems | ||
| 26 | PACKAGECONFIG_GL ?= "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gles2 egl', '', d)}" | ||
| 27 | |||
| 28 | PACKAGECONFIG ??= " \ | ||
| 29 | ${GSTREAMER_ORC} \ | ||
| 30 | ${PACKAGECONFIG_GL} \ | ||
| 31 | ${@bb.utils.filter('DISTRO_FEATURES', 'alsa x11', d)} \ | ||
| 32 | jpeg ogg pango png theora vorbis \ | ||
| 33 | ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland egl', '', d)} \ | ||
| 34 | " | ||
| 35 | |||
| 36 | OPENGL_APIS = 'opengl gles2' | ||
| 37 | OPENGL_PLATFORMS = 'egl' | ||
| 38 | |||
| 39 | X11DEPENDS = "virtual/libx11 libsm libxrender libxv" | ||
| 40 | X11ENABLEOPTS = "-Dx11=enabled -Dxvideo=enabled -Dxshm=enabled" | ||
| 41 | X11DISABLEOPTS = "-Dx11=disabled -Dxvideo=disabled -Dxshm=disabled" | ||
| 42 | |||
| 43 | PACKAGECONFIG[alsa] = "-Dalsa=enabled,-Dalsa=disabled,alsa-lib" | ||
| 44 | PACKAGECONFIG[cdparanoia] = "-Dcdparanoia=enabled,-Dcdparanoia=disabled,cdparanoia" | ||
| 45 | PACKAGECONFIG[graphene] = "-Dgl-graphene=enabled,-Dgl-graphene=disabled,graphene" | ||
| 46 | PACKAGECONFIG[jpeg] = "-Dgl-jpeg=enabled,-Dgl-jpeg=disabled,jpeg" | ||
| 47 | PACKAGECONFIG[ogg] = "-Dogg=enabled,-Dogg=disabled,libogg" | ||
| 48 | PACKAGECONFIG[opus] = "-Dopus=enabled,-Dopus=disabled,libopus" | ||
| 49 | PACKAGECONFIG[pango] = "-Dpango=enabled,-Dpango=disabled,pango" | ||
| 50 | PACKAGECONFIG[png] = "-Dgl-png=enabled,-Dgl-png=disabled,libpng" | ||
| 51 | PACKAGECONFIG[qt5] = "-Dqt5=enabled,-Dqt5=disabled,qtbase qtdeclarative qtbase-native" | ||
| 52 | PACKAGECONFIG[theora] = "-Dtheora=enabled,-Dtheora=disabled,libtheora" | ||
| 53 | PACKAGECONFIG[tremor] = "-Dtremor=enabled,-Dtremor=disabled,tremor" | ||
| 54 | PACKAGECONFIG[visual] = "-Dlibvisual=enabled,-Dlibvisual=disabled,libvisual" | ||
| 55 | PACKAGECONFIG[vorbis] = "-Dvorbis=enabled,-Dvorbis=disabled,libvorbis" | ||
| 56 | PACKAGECONFIG[x11] = "${X11ENABLEOPTS},${X11DISABLEOPTS},${X11DEPENDS}" | ||
| 57 | |||
| 58 | # OpenGL API packageconfigs | ||
| 59 | PACKAGECONFIG[opengl] = ",,virtual/libgl libglu" | ||
| 60 | PACKAGECONFIG[gles2] = ",,virtual/libgles2" | ||
| 61 | |||
| 62 | # OpenGL platform packageconfigs | ||
| 63 | PACKAGECONFIG[egl] = ",,virtual/egl" | ||
| 64 | |||
| 65 | # OpenGL window systems (except for X11) | ||
| 66 | PACKAGECONFIG[gbm] = ",,virtual/libgbm libgudev libdrm" | ||
| 67 | PACKAGECONFIG[wayland] = ",,wayland-native wayland wayland-protocols libdrm" | ||
| 68 | PACKAGECONFIG[dispmanx] = ",,virtual/libomxil" | ||
| 69 | PACKAGECONFIG[viv-fb] = ",,virtual/libgles2 virtual/libg2d" | ||
| 70 | |||
| 71 | OPENGL_WINSYS = "${@bb.utils.filter('PACKAGECONFIG', 'x11 gbm wayland dispmanx egl viv-fb', d)}" | ||
| 72 | |||
| 73 | EXTRA_OEMESON += " \ | ||
| 74 | -Ddoc=disabled \ | ||
| 75 | ${@get_opengl_cmdline_list('gl_api', d.getVar('OPENGL_APIS'), d)} \ | ||
| 76 | ${@get_opengl_cmdline_list('gl_platform', d.getVar('OPENGL_PLATFORMS'), d)} \ | ||
| 77 | ${@get_opengl_cmdline_list('gl_winsys', d.getVar('OPENGL_WINSYS'), d)} \ | ||
| 78 | " | ||
| 79 | |||
| 80 | FILES:${PN}-dev += "${libdir}/gstreamer-1.0/include/gst/gl/gstglconfig.h" | ||
| 81 | FILES:${MLPREFIX}libgsttag-1.0 += "${datadir}/gst-plugins-base/1.0/license-translations.dict" | ||
| 82 | |||
| 83 | def get_opengl_cmdline_list(switch_name, options, d): | ||
| 84 | selected_options = [] | ||
| 85 | if bb.utils.contains('DISTRO_FEATURES', 'opengl', True, False, d): | ||
| 86 | for option in options.split(): | ||
| 87 | if bb.utils.contains('PACKAGECONFIG', option, True, False, d): | ||
| 88 | selected_options += [option] | ||
| 89 | if selected_options: | ||
| 90 | return '-D' + switch_name + '=' + ','.join(selected_options) | ||
| 91 | else: | ||
| 92 | return '' | ||
| 93 | |||
| 94 | CVE_PRODUCT += "gst-plugins-base" | ||
