diff options
author | wangmy <wangmy@fujitsu.com> | 2022-06-30 12:25:34 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-07-01 11:31:42 +0100 |
commit | c60bec10c7dbc45c0ee873972520cfe9ade213b6 (patch) | |
tree | e6a238738ddd9e2221ff4ad1169b21316bdc4524 /meta/recipes-multimedia/speex/speex_1.2.1.bb | |
parent | a13b12b3c5fed979f3ba77e696bb42c4a9b490ba (diff) | |
download | poky-c60bec10c7dbc45c0ee873972520cfe9ade213b6.tar.gz |
speex: upgrade 1.2.0 -> 1.2.1
CVE-2020-23903.patch
removed since it's included in 1.2.1
License-Update:
Add "Organisation (CSIRO)" to Copyright 2005-2008
Changelog:
===========
Check for _WIN32 instead of WIN32 in preprocessor checks
wav_io: check for EOF when seeking in wav (fixes hang discovered by fuzzing, see #9)
CI: add gitlab CI integration
fixed-point: make left shift macros use unsigned to avoid undefined behaviour
math_approx: use unsigned int for LCG pseudorandom generator (avoids integer overflow)
oss-fuzz: add integration and fuzzing target
speexenc: guard against invalid channel numbers (see #13)
speexdec: make left shift macros use unsigned to avoid undefined behaviour
autotools: do not use deprecated macros
(From OE-Core rev: 4a0bd109d59bd51c98ce31c9a9e7904a88e01215)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/speex/speex_1.2.1.bb')
-rw-r--r-- | meta/recipes-multimedia/speex/speex_1.2.1.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/speex/speex_1.2.1.bb b/meta/recipes-multimedia/speex/speex_1.2.1.bb new file mode 100644 index 0000000000..c40198fa8f --- /dev/null +++ b/meta/recipes-multimedia/speex/speex_1.2.1.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | SUMMARY = "Speech Audio Codec" | ||
2 | DESCRIPTION = "Speex is an Open Source/Free Software patent-free audio compression format designed for speech." | ||
3 | HOMEPAGE = "http://www.speex.org" | ||
4 | SECTION = "libs" | ||
5 | LICENSE = "BSD-3-Clause" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=eff3f76350f52a99a3df5eec6b79c02a \ | ||
7 | file://include/speex/speex.h;beginline=1;endline=34;md5=ef8c8ea4f7198d71cf3509c6ed05ea50 \ | ||
8 | " | ||
9 | DEPENDS = "libogg speexdsp" | ||
10 | |||
11 | SRC_URI = "http://downloads.xiph.org/releases/speex/speex-${PV}.tar.gz" | ||
12 | UPSTREAM_CHECK_REGEX = "speex-(?P<pver>\d+(\.\d+)+)\.tar" | ||
13 | |||
14 | SRC_URI[sha256sum] = "4b44d4f2b38a370a2d98a78329fefc56a0cf93d1c1be70029217baae6628feea" | ||
15 | |||
16 | inherit autotools pkgconfig lib_package | ||
17 | |||
18 | EXTRA_OECONF = "\ | ||
19 | ${@bb.utils.contains('TARGET_FPU', 'soft', '--enable-fixed-point --disable-float-api --disable-vbr', '', d)} \ | ||
20 | " | ||