mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
19b3824bfb
Enables also the use of the avresample library. Fixes #1910
23 lines
785 B
Plaintext
23 lines
785 B
Plaintext
LICENSE := GPLv3
|
|
VERSION := 11.6
|
|
DOWNLOADS := libav.archive
|
|
|
|
URL(libav) := https://www.libav.org/releases/libav-$(VERSION).tar.gz
|
|
SHA(libav) := 4f65d7474a45330ec2d51ad80ab00159515229eb
|
|
DIR(libav) := src/lib/libav
|
|
SIG(libav) := ${URL(libav)}.asc
|
|
|
|
PATCHES := src/app/avplay/avplay.patch \
|
|
src/lib/libav/avcodec.patch
|
|
|
|
include_subdirs := . libavcodec libavfilter libavutil libavformat libswscale \
|
|
libavutil/x86 libavutil/arm libavutil/ppc libavcodec/x86 \
|
|
libavcodec/arm libavresample
|
|
|
|
DIRS := $(addprefix include/libav/,$(include_subdirs))
|
|
|
|
$(foreach dir,$(include_subdirs),\
|
|
$(eval DIR_CONTENT(include/libav/$(dir)) := src/lib/libav/$(dir)/*.h))
|
|
|
|
DIR_CONTENT(include/libav/libavutil) += src/lib/libav/libavutil/log2_tab.c
|