mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-25 13:18:27 +00:00
Changes for 1.5.0 'Sonic':
--------------------------
1.5.0 is a major release of dav1d, that:
- WARNING: we removed some of the SSE2 optimizations, so if you care about
systems without SSSE3, you should be careful when updating!
- Add Arm OpenBSD run-time CPU feature
- Optimize index offset calculations for decode_coefs
- picture: copy HDR10+ and T35 metadata only to visible frames
- SSSE3 new optimizations for 6-tap (8bit and hbd)
- AArch64/SVE: Add HBD subpel filters using 128-bit SVE2
- AArch64: Add USMMLA implempentation for 6-tap H/HV
- AArch64: Optimize Armv8.0 NEON for HBD horizontal filters and 6-tap filters
- Power9: Optimized ITX till 16x4.
- Loongarch: numerous optimizations
- RISC-V optimizations for pal, cdef_filter, ipred, mc_blend, mc_bdir, itx
- Allow playing videos in full-screen mode in dav1dplay
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
633 B
BlitzBasic
21 lines
633 B
BlitzBasic
SUMMARY = "dav1d AV1 decoder"
|
|
DESCRIPTION = "Targeted to be small, portable and fast."
|
|
HOMEPAGE = "https://code.videolan.org/videolan/dav1d"
|
|
SECTION = "multimedia"
|
|
LICENSE = "BSD-2-Clause"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=c8055cfe7548dfdaa3a6dc45d8793669"
|
|
|
|
SRC_URI = "git://code.videolan.org/videolan/dav1d.git;protocol=https;nobranch=1"
|
|
SRCREV = "32cf02af50f32af108a3b281c452788dccdac648"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS:append:x86 = " nasm-native"
|
|
DEPENDS:append:x86-64 = " nasm-native"
|
|
|
|
inherit meson pkgconfig
|
|
|
|
# RVV assembler routines are not yet available for RISCV32
|
|
EXTRA_OEMESON:append:riscv32 = " -Denable_asm=false"
|