mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
libavif is an implementation of the AV1F image format, which may be a frontend for different encoders and decoders. At the moment only dav1d is packaged so that is the one configured. Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14 lines
415 B
Plaintext
14 lines
415 B
Plaintext
config BR2_PACKAGE_LIBAVIF
|
|
bool "libavif"
|
|
depends on !BR2_STATIC_LIBS # dav1d, dlfcn.h
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dav1d, pthread
|
|
select BR2_PACKAGE_DAV1D
|
|
help
|
|
Friendly, portable C implementation of the AV1 Image File
|
|
Format.
|
|
|
|
https://github.com/AOMediaCodec/libavif
|
|
|
|
comment "libavif needs a toolchain w/ threads, dynamic library"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|