3025e84409
Now that we use unbundled ffmpeg the licensing becomes much easier. Relevant code is under ext/*, which according to COPYING and comments is GPLv2+, except for ext/libswscale/gstffmpegscale.c which is LGPLv2+ - however that's not built/used when using system ffmpeg. The code under gst-libs/ is the bundled ffmpeg itself. Tests are under LGPLv2+ as well but we don't build them since we disabled gst-check support in the gstreamer1 package. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
611 B
Makefile
19 lines
611 B
Makefile
################################################################################
|
|
#
|
|
# gst1-libav
|
|
#
|
|
################################################################################
|
|
|
|
GST1_LIBAV_VERSION = 1.8.0
|
|
GST1_LIBAV_SOURCE = gst-libav-$(GST1_LIBAV_VERSION).tar.xz
|
|
GST1_LIBAV_SITE = http://gstreamer.freedesktop.org/src/gst-libav
|
|
GST1_LIBAV_CONF_OPTS = --with-system-libav
|
|
GST1_LIBAV_DEPENDENCIES = \
|
|
host-pkgconf ffmpeg gstreamer1 gst1-plugins-base \
|
|
$(if $(BR2_PACKAGE_BZIP2),bzip2) \
|
|
$(if $(BR2_PACKAGE_XZ),xz)
|
|
GST1_LIBAV_LICENSE = GPLv2+
|
|
GST1_LIBAV_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(autotools-package))
|