mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
Changelog:
=========
This release adds optimizations for Loongarch, adds support for vp8 in the
real-time rate control library, upgrades GoogleTest to v1.11.0, updates
libwebm to libwebm-1.0.0.28-20-g206d268, and includes numerous bug fixes.
- Upgrading:
This release is ABI compatible with the previous release.
vp8 support in the real-time rate control library.
New codec control VP8E_SET_RTC_EXTERNAL_RATECTRL is added.
Configure support for darwin21 is added.
GoogleTest is upgraded to v1.11.0.
libwebm is updated to libwebm-1.0.0.28-20-g206d268.
- Enhancement:
Numerous improvements on checking memory allocations.
Optimizations for Loongarch.
Code clean-up.
- Bug fixes:
Fix to a crash related to {vp8/vp9}_set_roi_map.
Fix to compiling failure with -Wformat-nonliteral.
Fix to integer overflow with vp9 with high resolution content.
Fix to AddNoiseTest failure with ARMv7.
Fix to libvpx Null-dereference READ in vp8.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
51 lines
1.4 KiB
BlitzBasic
51 lines
1.4 KiB
BlitzBasic
SUMMARY = "VPX multi-format codec"
|
|
DESCRIPTION = "The BSD-licensed libvpx reference implementation provides en- and decoders for VP8 and VP9 bitstreams."
|
|
HOMEPAGE = "http://www.webmproject.org/code/"
|
|
BUGTRACKER = "http://code.google.com/p/webm/issues/list"
|
|
SECTION = "libs/multimedia"
|
|
LICENSE = "BSD-3-Clause"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=d5b04755015be901744a78cc30d390d4"
|
|
|
|
SRCREV = "03265cd42b3783532de72f2ded5436652e6f5ce3"
|
|
SRC_URI += "git://chromium.googlesource.com/webm/libvpx;protocol=https;branch=main \
|
|
file://libvpx-configure-support-blank-prefix.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
# ffmpeg links with this and fails
|
|
# sysroots/armv4t-oe-linux-gnueabi/usr/lib/libvpx.a(vpx_encoder.c.o)(.text+0xc4): unresolvable R_ARM_THM_CALL relocation against symbol `memcpy@@GLIBC_2.4'
|
|
ARM_INSTRUCTION_SET = "arm"
|
|
|
|
CFLAGS += "-fPIC"
|
|
|
|
export CC
|
|
export LD = "${CC}"
|
|
|
|
VPXTARGET:armv5te = "armv5te-linux-gcc"
|
|
VPXTARGET:armv6 = "armv6-linux-gcc"
|
|
VPXTARGET:armv7a = "armv7-linux-gcc"
|
|
VPXTARGET ?= "generic-gnu"
|
|
|
|
CONFIGUREOPTS = " \
|
|
--target=${VPXTARGET} \
|
|
--enable-vp9 \
|
|
--enable-libs \
|
|
--disable-install-docs \
|
|
--disable-static \
|
|
--enable-shared \
|
|
--prefix=${prefix} \
|
|
--libdir=${libdir} \
|
|
--size-limit=16384x16384 \
|
|
"
|
|
|
|
do_configure() {
|
|
${S}/configure ${CONFIGUREOPTS}
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake install DESTDIR=${D}
|
|
chown -R root:root ${D}
|
|
}
|