diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2018-05-25 14:20:07 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-18 11:07:58 +0100 |
commit | 0bdb9262257c977afa8bb99f538de494d938c763 (patch) | |
tree | 3398c57db435223521b8c0cf7a30dff2c2a679d8 /meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.14.1.bb | |
parent | f0aa326844059aceb877bf325cf28571a6a3c8e9 (diff) | |
download | poky-0bdb9262257c977afa8bb99f538de494d938c763.tar.gz |
gstreamer1.0-plugins-bad: upgrade 1.14.0 -> 1.14.1
Bugfixes only. Please see:
https://gstreamer.freedesktop.org/releases/1.14/#1.14.1
(From OE-Core rev: 12ff23f94b43b190ea4f9392f7ba9592362a9c50)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.14.1.bb')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.14.1.bb | 136 |
1 files changed, 136 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.14.1.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.14.1.bb new file mode 100644 index 0000000000..0e477e5a9c --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.14.1.bb | |||
@@ -0,0 +1,136 @@ | |||
1 | require gstreamer1.0-plugins.inc | ||
2 | |||
3 | SRC_URI = " \ | ||
4 | http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-${PV}.tar.xz \ | ||
5 | file://configure-allow-to-disable-libssh2.patch \ | ||
6 | file://fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch \ | ||
7 | file://avoid-including-sys-poll.h-directly.patch \ | ||
8 | file://ensure-valid-sentinels-for-gst_structure_get-etc.patch \ | ||
9 | file://0001-introspection.m4-prefix-pkgconfig-paths-with-PKG_CON.patch \ | ||
10 | file://0001-Makefile.am-don-t-hardcode-libtool-name-when-running.patch \ | ||
11 | " | ||
12 | SRC_URI[md5sum] = "c2f963501fc6afc084c418894425dcfd" | ||
13 | SRC_URI[sha256sum] = "2a77c6908032aafdf2cd2e5823fec948f16a25c2d1497a953828d762dc20d61a" | ||
14 | |||
15 | S = "${WORKDIR}/gst-plugins-bad-${PV}" | ||
16 | |||
17 | LICENSE = "GPLv2+ & LGPLv2+ & LGPLv2.1+" | ||
18 | LIC_FILES_CHKSUM = "file://COPYING;md5=73a5855a8119deb017f5f13cf327095d \ | ||
19 | file://COPYING.LIB;md5=21682e4e8fea52413fd26c60acb907e5 " | ||
20 | |||
21 | DEPENDS += "gstreamer1.0-plugins-base jpeg" | ||
22 | |||
23 | inherit gettext bluetooth | ||
24 | |||
25 | PACKAGECONFIG ??= " \ | ||
26 | ${GSTREAMER_ORC} \ | ||
27 | ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} \ | ||
28 | ${@bb.utils.filter('DISTRO_FEATURES', 'directfb vulkan', d)} \ | ||
29 | ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', '', d)} \ | ||
30 | bz2 curl dash dtls hls rsvg sbc smoothstreaming sndfile uvch264 webp \ | ||
31 | " | ||
32 | |||
33 | PACKAGECONFIG[assrender] = "--enable-assrender,--disable-assrender,libass" | ||
34 | PACKAGECONFIG[bluez] = "--enable-bluez,--disable-bluez,${BLUEZ}" | ||
35 | PACKAGECONFIG[bz2] = "--enable-bz2,--disable-bz2,bzip2" | ||
36 | PACKAGECONFIG[curl] = "--enable-curl,--disable-curl,curl" | ||
37 | PACKAGECONFIG[dash] = "--enable-dash,--disable-dash,libxml2" | ||
38 | PACKAGECONFIG[dc1394] = "--enable-dc1394,--disable-dc1394,libdc1394" | ||
39 | PACKAGECONFIG[directfb] = "--enable-directfb,--disable-directfb,directfb" | ||
40 | PACKAGECONFIG[dtls] = "--enable-dtls,--disable-dtls,openssl" | ||
41 | PACKAGECONFIG[faac] = "--enable-faac,--disable-faac,faac" | ||
42 | PACKAGECONFIG[faad] = "--enable-faad,--disable-faad,faad2" | ||
43 | PACKAGECONFIG[flite] = "--enable-flite,--disable-flite,flite-alsa" | ||
44 | PACKAGECONFIG[fluidsynth] = "--enable-fluidsynth,--disable-fluidsynth,fluidsynth" | ||
45 | PACKAGECONFIG[hls] = "--enable-hls --with-hls-crypto=nettle,--disable-hls,nettle" | ||
46 | PACKAGECONFIG[kms] = "--enable-kms,--disable-kms,libdrm" | ||
47 | PACKAGECONFIG[libmms] = "--enable-libmms,--disable-libmms,libmms" | ||
48 | PACKAGECONFIG[libssh2] = "--enable-libssh2,--disable-libssh2,libssh2" | ||
49 | PACKAGECONFIG[modplug] = "--enable-modplug,--disable-modplug,libmodplug" | ||
50 | PACKAGECONFIG[neon] = "--enable-neon,--disable-neon,neon" | ||
51 | PACKAGECONFIG[openal] = "--enable-openal,--disable-openal,openal-soft" | ||
52 | PACKAGECONFIG[opencv] = "--enable-opencv,--disable-opencv,opencv" | ||
53 | PACKAGECONFIG[openjpeg] = "--enable-openjpeg,--disable-openjpeg,openjpeg" | ||
54 | # the opus encoder/decoder elements are now in the -base package, | ||
55 | # but the opus parser remains in -bad | ||
56 | PACKAGECONFIG[opusparse] = "--enable-opus,--disable-opus,libopus" | ||
57 | PACKAGECONFIG[resindvd] = "--enable-resindvd,--disable-resindvd,libdvdread libdvdnav" | ||
58 | PACKAGECONFIG[rsvg] = "--enable-rsvg,--disable-rsvg,librsvg" | ||
59 | PACKAGECONFIG[rtmp] = "--enable-rtmp,--disable-rtmp,rtmpdump" | ||
60 | PACKAGECONFIG[sbc] = "--enable-sbc,--disable-sbc,sbc" | ||
61 | PACKAGECONFIG[smoothstreaming] = "--enable-smoothstreaming,--disable-smoothstreaming,libxml2" | ||
62 | PACKAGECONFIG[sndfile] = "--enable-sndfile,--disable-sndfile,libsndfile1" | ||
63 | PACKAGECONFIG[srtp] = "--enable-srtp,--disable-srtp,libsrtp" | ||
64 | PACKAGECONFIG[uvch264] = "--enable-uvch264,--disable-uvch264,libusb1 libgudev" | ||
65 | PACKAGECONFIG[voaacenc] = "--enable-voaacenc,--disable-voaacenc,vo-aacenc" | ||
66 | PACKAGECONFIG[voamrwbenc] = "--enable-voamrwbenc,--disable-voamrwbenc,vo-amrwbenc" | ||
67 | PACKAGECONFIG[vulkan] = "--enable-vulkan,--disable-vulkan,vulkan" | ||
68 | PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,wayland-native wayland wayland-protocols libdrm" | ||
69 | PACKAGECONFIG[webp] = "--enable-webp,--disable-webp,libwebp" | ||
70 | |||
71 | # these plugins have no corresponding library in OE-core or meta-openembedded: | ||
72 | # openni2 winks direct3d directsound winscreencap acm apple_media iqa | ||
73 | # android_media avc bs2b chromaprint daala dts fdkaac gme gsm kate ladspa libde265 | ||
74 | # lv2 mpeg2enc mplex msdk musepack nvenc ofa openh264 opensles soundtouch spandsp | ||
75 | # spc teletextdec tinyalsa vdpau wasapi x265 zbar webrtcdsp | ||
76 | |||
77 | EXTRA_OECONF += " \ | ||
78 | --enable-decklink \ | ||
79 | --enable-dvb \ | ||
80 | --enable-fbdev \ | ||
81 | --enable-netsim \ | ||
82 | --enable-shm \ | ||
83 | --enable-vcd \ | ||
84 | --disable-acm \ | ||
85 | --disable-android_media \ | ||
86 | --disable-apple_media \ | ||
87 | --disable-avc \ | ||
88 | --disable-bs2b \ | ||
89 | --disable-chromaprint \ | ||
90 | --disable-daala \ | ||
91 | --disable-direct3d \ | ||
92 | --disable-directsound \ | ||
93 | --disable-dts \ | ||
94 | --disable-fdk_aac \ | ||
95 | --disable-gme \ | ||
96 | --disable-gsm \ | ||
97 | --disable-iqa \ | ||
98 | --disable-kate \ | ||
99 | --disable-ladspa \ | ||
100 | --disable-libde265 \ | ||
101 | --disable-lv2 \ | ||
102 | --disable-mpeg2enc \ | ||
103 | --disable-mplex \ | ||
104 | --disable-msdk \ | ||
105 | --disable-musepack \ | ||
106 | --disable-nvenc \ | ||
107 | --disable-ofa \ | ||
108 | --disable-openexr \ | ||
109 | --disable-openh264 \ | ||
110 | --disable-openni2 \ | ||
111 | --disable-opensles \ | ||
112 | --disable-soundtouch \ | ||
113 | --disable-spandsp \ | ||
114 | --disable-spc \ | ||
115 | --disable-teletextdec \ | ||
116 | --disable-tinyalsa \ | ||
117 | --disable-vdpau \ | ||
118 | --disable-wasapi \ | ||
119 | --disable-webrtcdsp \ | ||
120 | --disable-wildmidi \ | ||
121 | --disable-winks \ | ||
122 | --disable-winscreencap \ | ||
123 | --disable-x265 \ | ||
124 | --disable-zbar \ | ||
125 | ${@bb.utils.contains("TUNE_FEATURES", "mx32", "--disable-yadif", "", d)} \ | ||
126 | " | ||
127 | |||
128 | export OPENCV_PREFIX = "${STAGING_DIR_TARGET}${prefix}" | ||
129 | |||
130 | ARM_INSTRUCTION_SET_armv4 = "arm" | ||
131 | ARM_INSTRUCTION_SET_armv5 = "arm" | ||
132 | |||
133 | FILES_${PN}-dev += "${libdir}/gstreamer-${LIBV}/include/gst/gl/gstglconfig.h" | ||
134 | FILES_${PN}-freeverb += "${datadir}/gstreamer-${LIBV}/presets/GstFreeverb.prs" | ||
135 | FILES_${PN}-opencv += "${datadir}/gst-plugins-bad/${LIBV}/opencv*" | ||
136 | FILES_${PN}-voamrwbenc += "${datadir}/gstreamer-${LIBV}/presets/GstVoAmrwbEnc.prs" | ||