Update buidlroot to version 2016.08.1
This commit is contained in:
2
bsp/buildroot/package/gstreamer1/gst-omx/gst-omx.hash
Normal file
2
bsp/buildroot/package/gstreamer1/gst-omx/gst-omx.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# locally computed
|
||||
sha256 0b4874961e6488ad9e5808114bd486ea981c540907262caab1419355fd82d745 gst-omx-1.2.0.tar.xz
|
||||
@@ -0,0 +1,33 @@
|
||||
From 1ca05ebb7cb63607d14983948105dd1483ea6b65 Mon Sep 17 00:00:00 2001
|
||||
From: Gary Bisson <gary.bisson@boundarydevices.com>
|
||||
Date: Tue, 9 Aug 2016 10:26:15 +0200
|
||||
Subject: [PATCH] v4l2src: Add V4L2_PIX_FMT_XRGB555X check
|
||||
|
||||
Since this format was added in kernel 3.18, any prior version will
|
||||
fail to compile.
|
||||
|
||||
Issue reported by Buildroot autobuilder with 3.10 kernel headers:
|
||||
http://autobuild.buildroot.net/results/b46/b460a770c8f4e992d29dde8fe37fc23a949937f2/
|
||||
|
||||
Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
|
||||
---
|
||||
src/v4l2src/v4l2src.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/src/v4l2src/v4l2src.c b/src/v4l2src/v4l2src.c
|
||||
index c77ae49..12b392a 100644
|
||||
--- a/src/v4l2src/v4l2src.c
|
||||
+++ b/src/v4l2src/v4l2src.c
|
||||
@@ -447,7 +447,9 @@ static GstCaps *gst_imx_v4l2src_caps_for_current_setup(GstImxV4l2VideoSrc *v4l2s
|
||||
case V4L2_PIX_FMT_RGB555:
|
||||
gst_fmt = GST_VIDEO_FORMAT_RGB15;
|
||||
break;
|
||||
+#ifdef V4L2_PIX_FMT_XRGB555X
|
||||
case V4L2_PIX_FMT_XRGB555X:
|
||||
+#endif
|
||||
case V4L2_PIX_FMT_RGB555X:
|
||||
gst_fmt = GST_VIDEO_FORMAT_BGR15;
|
||||
break;
|
||||
--
|
||||
2.8.1
|
||||
|
||||
@@ -1,27 +1,24 @@
|
||||
comment "gst1-imx needs an imx-specific Linux kernel to be built"
|
||||
depends on BR2_arm && !BR2_LINUX_KERNEL
|
||||
|
||||
# Required by imx-gpu-viv
|
||||
comment "gst1-imx needs an (e)glibc toolchain"
|
||||
depends on BR2_arm
|
||||
depends on !BR2_TOOLCHAIN_USES_GLIBC
|
||||
|
||||
config BR2_PACKAGE_GST1_IMX
|
||||
bool "gst1-imx"
|
||||
depends on BR2_LINUX_KERNEL
|
||||
depends on BR2_arm # Only relevant for i.MX
|
||||
depends on BR2_TOOLCHAIN_USES_GLIBC # imx-gpu-viv
|
||||
depends on BR2_PACKAGE_IMX_GPU_VIV
|
||||
depends on BR2_PACKAGE_LIBFSLVPUWRAP
|
||||
depends on !BR2_STATIC_LIBS
|
||||
select BR2_PACKAGE_GST1_PLUGINS_BASE
|
||||
help
|
||||
This is a set of GStreamer 1.0 plugins for plugins for Freescale's
|
||||
i.MX6 platforms, with emphasis on video en/decoding using the VPU
|
||||
engine.
|
||||
i.MX platforms, which make use of the i.MX multimedia capabilities.
|
||||
|
||||
This software supports only the i.MX6 SoC family and requires a
|
||||
kernel that includes the i.MX6 specific headers to be built.
|
||||
This software supports only the i.MX6 SoC family.
|
||||
|
||||
The software as a whole is currently in beta stage.
|
||||
The IPU and PXP plugins are built when an imx-specific kernel is
|
||||
enabled.
|
||||
The V4L2 plugin is built when BR2_PACKAGE_GST1_PLUGINS_BAD is enabled.
|
||||
The VPU plugin is built when BR2_PACKAGE_LIBIMXVPUAPI is enabled.
|
||||
The EGL plugin is built when BR2_PACKAGE_IMX_GPU_VIV is enabled.
|
||||
The G2D plugin is built when BR2_PACKAGE_IMX_GPU_VIV_G2D is enabled.
|
||||
The MP3 plugin is built when BR2_PACKAGE_IMX_CODEC is enabled.
|
||||
|
||||
https://github.com/Freescale/gstreamer-imx
|
||||
|
||||
comment "gst1-imx needs a toolchain w/ dynamic library"
|
||||
depends on BR2_arm
|
||||
depends on BR2_STATIC_LIBS
|
||||
|
||||
2
bsp/buildroot/package/gstreamer1/gst1-imx/gst1-imx.hash
Normal file
2
bsp/buildroot/package/gstreamer1/gst1-imx/gst1-imx.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# locally computed hash
|
||||
sha256 a75f8bc3219fa3c62637f443cef0196c9eafb90aaa5af094847d007124895822 gst1-imx-0.12.2.tar.gz
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GST1_IMX_VERSION = 0.11.1
|
||||
GST1_IMX_VERSION = 0.12.2
|
||||
GST1_IMX_SITE = $(call github,Freescale,gstreamer-imx,$(GST1_IMX_VERSION))
|
||||
|
||||
GST1_IMX_LICENSE = LGPLv2+
|
||||
@@ -12,14 +12,34 @@ GST1_IMX_LICENSE_FILES = LICENSE
|
||||
|
||||
GST1_IMX_INSTALL_STAGING = YES
|
||||
|
||||
GST1_IMX_DEPENDENCIES += host-pkgconf host-python \
|
||||
imx-gpu-viv gstreamer1 gst1-plugins-base libfslvpuwrap
|
||||
GST1_IMX_DEPENDENCIES += \
|
||||
host-pkgconf \
|
||||
host-python \
|
||||
gstreamer1 \
|
||||
gst1-plugins-base
|
||||
|
||||
# needs access to imx-specific kernel headers
|
||||
GST1_IMX_CONF_OPTS = --prefix="/usr"
|
||||
|
||||
ifeq ($(BR2_LINUX_KERNEL),y)
|
||||
# IPU and PXP need access to imx-specific kernel headers
|
||||
GST1_IMX_DEPENDENCIES += linux
|
||||
GST1_IMX_CONF_OPTS += --prefix="/usr" \
|
||||
--kernel-headers="$(LINUX_DIR)/include"
|
||||
GST1_IMX_CONF_OPTS += --kernel-headers="$(LINUX_DIR)/include"
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD),y)
|
||||
GST1_IMX_DEPENDENCIES += gst1-plugins-bad
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_IMX_CODEC),y)
|
||||
GST1_IMX_DEPENDENCIES += imx-codec
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBIMXVPUAPI),y)
|
||||
GST1_IMX_DEPENDENCIES += libimxvpuapi
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_IMX_GPU_VIV),y)
|
||||
GST1_IMX_DEPENDENCIES += imx-gpu-viv
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
|
||||
GST1_IMX_DEPENDENCIES += xlib_libX11
|
||||
GST1_IMX_CONF_OPTS += --egl-platform=x11
|
||||
@@ -31,6 +51,7 @@ else
|
||||
GST1_IMX_CONF_OPTS += --egl-platform=fb
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
define GST1_IMX_CONFIGURE_CMDS
|
||||
cd $(@D); \
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
config BR2_PACKAGE_GST1_LIBAV
|
||||
bool "gst1-libav"
|
||||
depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
|
||||
select BR2_PACKAGE_FFMPEG
|
||||
select BR2_PACKAGE_FFMPEG_SWSCALE
|
||||
select BR2_PACKAGE_GST1_PLUGINS_BASE
|
||||
help
|
||||
GStreamer plugin (formerly gst-ffmpeg).
|
||||
@@ -7,4 +10,7 @@ config BR2_PACKAGE_GST1_LIBAV
|
||||
This package contains GStreamer plugins based on
|
||||
the libav project.
|
||||
|
||||
The codecs, muxers, bitstreams and filters to build can be
|
||||
selected in the ffmpeg package.
|
||||
|
||||
http://gstreamer.freedesktop.org/
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.6.3.tar.xz.sha256sum
|
||||
sha256 857b9c060a0337de38c6d26238c47352433c02eabf26c2f860c854dbc35bd4ab gst-libav-1.6.3.tar.xz
|
||||
# From http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.8.2.tar.xz.sha256sum
|
||||
sha256 b5f3c7a27b39b5f5c2f0bfd546b0c655020faf6b38d27b64b346c43e5ebf687a gst-libav-1.8.2.tar.xz
|
||||
|
||||
@@ -4,77 +4,15 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GST1_LIBAV_VERSION = 1.6.3
|
||||
GST1_LIBAV_VERSION = 1.8.2
|
||||
GST1_LIBAV_SOURCE = gst-libav-$(GST1_LIBAV_VERSION).tar.xz
|
||||
GST1_LIBAV_SITE = http://gstreamer.freedesktop.org/src/gst-libav
|
||||
|
||||
GST1_LIBAV_DEPENDENCIES = host-pkgconf gstreamer1 gst1-plugins-base
|
||||
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS = --cross-prefix=$(TARGET_CROSS) --target-os=linux
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --enable-zlib
|
||||
GST1_LIBAV_DEPENDENCIES += zlib
|
||||
else
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-zlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --enable-bzlib
|
||||
GST1_LIBAV_DEPENDENCIES += bzip2
|
||||
else
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-bzlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_X86_CPU_HAS_MMX),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --enable-yasm
|
||||
GST1_LIBAV_DEPENDENCIES += host-yasm
|
||||
else
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-yasm
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-mmx
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_X86_CPU_HAS_SSE),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --enable-sse
|
||||
else
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-sse
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_X86_CPU_HAS_SSSE3),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --enable-ssse3
|
||||
else
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-ssse3
|
||||
endif
|
||||
|
||||
# Explicitly disable everything that doesn't match for ARM
|
||||
# FFMPEG "autodetects" by compiling an extended instruction via AS
|
||||
# This works on compilers that aren't built for generic by default
|
||||
ifeq ($(BR2_ARM_CPU_ARMV4),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-armv5te
|
||||
endif
|
||||
ifeq ($(BR2_ARM_CPU_ARMV6)$(BR2_ARM_CPU_ARMV7A),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --enable-armv6
|
||||
else
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-armv6 --disable-armv6t2
|
||||
endif
|
||||
ifeq ($(BR2_ARM_CPU_HAS_NEON),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --enable-neon
|
||||
else
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-neon
|
||||
endif
|
||||
ifeq ($(BR2_ARM_CPU_HAS_VFPV2),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --enable-vfp
|
||||
else
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-vfp
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_POWERPC_CPU_HASH_ALTIVEC),y)
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --enable-altivec
|
||||
else
|
||||
GST1_LIBAV_CONF_EXTRA_OPTS += --disable-altivec
|
||||
endif
|
||||
|
||||
GST1_LIBAV_CONF_OPTS = \
|
||||
--with-libav-extra-configure="$(GST1_LIBAV_CONF_EXTRA_OPTS)"
|
||||
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))
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
Use newer version of gettext to match current buildroot gettext.
|
||||
|
||||
Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
|
||||
----
|
||||
Index: gst1-plugins-bad-1.1.1/po/Makefile.in.in
|
||||
===================================================================
|
||||
--- gst1-plugins-bad-1.1.1.orig/po/Makefile.in.in
|
||||
+++ gst1-plugins-bad-1.1.1/po/Makefile.in.in
|
||||
@@ -9,7 +9,7 @@
|
||||
# General Public License and is *not* in the public domain.
|
||||
#
|
||||
# Origin: gettext-0.17
|
||||
-GETTEXT_MACRO_VERSION = 0.17
|
||||
+GETTEXT_MACRO_VERSION = 0.18
|
||||
|
||||
PACKAGE = @PACKAGE@
|
||||
VERSION = @VERSION@
|
||||
@@ -312,11 +312,6 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIBRFB
|
||||
help
|
||||
Connects to a VNC server and decodes RFB stream
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
|
||||
bool "liveadder"
|
||||
help
|
||||
Adds multiple live discontinuous streams
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MIDI
|
||||
bool "midi"
|
||||
help
|
||||
@@ -350,6 +345,9 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MXF
|
||||
help
|
||||
MXF plugin library
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NETSIM
|
||||
bool "netsim"
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX
|
||||
bool "nuvdemux"
|
||||
|
||||
@@ -379,8 +377,11 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REMOVESILENCE
|
||||
help
|
||||
Removes silence from an audio stream
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
|
||||
bool "rtp"
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTMP
|
||||
bool "rtmp"
|
||||
select BR2_PACKAGE_RTMPDUMP
|
||||
help
|
||||
RTMP plugin
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI
|
||||
bool "sdi"
|
||||
@@ -426,6 +427,11 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOFILTERS
|
||||
help
|
||||
Video filters in gst-plugins-bad
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOFRAME_AUDIOLEVEL
|
||||
bool "videoframe_audiolevel"
|
||||
help
|
||||
videoframe_audiolevel
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
|
||||
bool "videomeasure"
|
||||
|
||||
@@ -452,14 +458,6 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_YADIF
|
||||
|
||||
comment "plugins with external dependencies"
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SHM
|
||||
bool "shm"
|
||||
help
|
||||
shared memory sink source
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VCD
|
||||
bool "vcd"
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK
|
||||
bool "apexsink"
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
@@ -468,10 +466,6 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_ASSRENDER
|
||||
bool "assrender"
|
||||
select BR2_PACKAGE_LIBASS
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VOAACENC
|
||||
bool "voaacenc"
|
||||
select BR2_PACKAGE_VO_AACENC
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_BZ2
|
||||
bool "bz2"
|
||||
select BR2_PACKAGE_BZIP2
|
||||
@@ -504,18 +498,16 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DIRECTFB
|
||||
depends on BR2_PACKAGE_DIRECTFB
|
||||
default y
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WAYLAND
|
||||
bool "wayland"
|
||||
depends on BR2_PACKAGE_WAYLAND
|
||||
default y
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DVB
|
||||
bool "dvb"
|
||||
select BR2_PACKAGE_DTV_SCAN_TABLES
|
||||
# FEC_2_5 / QAM_4_NR definitions
|
||||
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
|
||||
help
|
||||
Wayland Video Sink
|
||||
DVB elements
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBP
|
||||
bool "webp"
|
||||
select BR2_PACKAGE_WEBP
|
||||
help
|
||||
Webp image format plugin
|
||||
comment "dvb needs a toolchain w/ headers >= 3.7"
|
||||
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FAAD
|
||||
bool "faad"
|
||||
@@ -528,6 +520,20 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FBDEV
|
||||
help
|
||||
Linux framebuffer video sink
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_GL
|
||||
bool "gl"
|
||||
default y
|
||||
depends on BR2_PACKAGE_GST1_PLUGINS_BAD_HAS_LIB_OPENGL
|
||||
|
||||
comment "gl needs the gst1-plugins-bad opengl library"
|
||||
depends on !BR2_PACKAGE_GST1_PLUGINS_BAD_HAS_LIB_OPENGL
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HLS
|
||||
bool "hls"
|
||||
select BR2_PACKAGE_NETTLE if !(BR2_PACKAGE_LIBGCRYPT || BR2_PACKAGE_OPENSSL)
|
||||
help
|
||||
Fragmented streaming plugins
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIBMMS
|
||||
bool "libmms"
|
||||
depends on BR2_USE_WCHAR # libmms -> libglib2
|
||||
@@ -545,13 +551,6 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPEG2ENC
|
||||
help
|
||||
High-quality MPEG-1/2 video encoder
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
|
||||
bool "mpg123"
|
||||
select BR2_PACKAGE_MPG123
|
||||
depends on BR2_USE_MMU # mpg123
|
||||
help
|
||||
mp3 decoding based on the mpg123 library
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MUSEPACK
|
||||
bool "musepack"
|
||||
select BR2_PACKAGE_MUSEPACK
|
||||
@@ -634,43 +633,48 @@ comment "rsvg plugin needs a toolchain w/ C++"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_GL
|
||||
bool "gl"
|
||||
default y
|
||||
depends on BR2_PACKAGE_GST1_PLUGINS_BAD_HAS_LIB_OPENGL
|
||||
|
||||
comment "gl needs the gst1-plugins-bad opengl library"
|
||||
depends on !BR2_PACKAGE_GST1_PLUGINS_BAD_HAS_LIB_OPENGL
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SBC
|
||||
bool "sbc"
|
||||
select BR2_PACKAGE_SBC
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
|
||||
bool "sdl"
|
||||
select BR2_PACKAGE_SDL
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SHM
|
||||
bool "shm"
|
||||
help
|
||||
shared memory sink source
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SNDFILE
|
||||
bool "sndfile"
|
||||
select BR2_PACKAGE_LIBSNDFILE
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DVB
|
||||
bool "dvb"
|
||||
select BR2_PACKAGE_DTV_SCAN_TABLES
|
||||
# FEC_2_5 / QAM_4_NR definitions
|
||||
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
|
||||
help
|
||||
DVB elements
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VCD
|
||||
bool "vcd"
|
||||
|
||||
comment "dvb needs a toolchain w/ headers >= 3.7"
|
||||
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VOAACENC
|
||||
bool "voaacenc"
|
||||
select BR2_PACKAGE_VO_AACENC
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HLS
|
||||
bool "hls"
|
||||
select BR2_PACKAGE_GNUTLS
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WAYLAND
|
||||
bool "wayland"
|
||||
depends on BR2_PACKAGE_WAYLAND
|
||||
default y
|
||||
help
|
||||
Fragmented streaming plugins
|
||||
Wayland Video Sink
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBP
|
||||
bool "webp"
|
||||
select BR2_PACKAGE_WEBP
|
||||
help
|
||||
Webp image format plugin
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_X265
|
||||
bool "x265"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on !BR2_STATIC_LIBS
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # x265
|
||||
select BR2_PACKAGE_X265
|
||||
help
|
||||
x265 encoding plugin
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.6.3.tar.xz.sha256sum
|
||||
sha256 971b29101d6a9c5e3fe94d99d977a227f58f0b2d29b6ca2c7f292052542b3a61 gst-plugins-bad-1.6.3.tar.xz
|
||||
# From http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.8.2.tar.xz.sha256sum
|
||||
sha256 d7995317530c8773ec088f94d9320909d41da61996b801ebacce9a56af493f97 gst-plugins-bad-1.8.2.tar.xz
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GST1_PLUGINS_BAD_VERSION = 1.6.3
|
||||
GST1_PLUGINS_BAD_VERSION = 1.8.2
|
||||
GST1_PLUGINS_BAD_SOURCE = gst-plugins-bad-$(GST1_PLUGINS_BAD_VERSION).tar.xz
|
||||
GST1_PLUGINS_BAD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-bad
|
||||
GST1_PLUGINS_BAD_INSTALL_STAGING = YES
|
||||
@@ -13,17 +13,11 @@ GST1_PLUGINS_BAD_LICENSE_FILES = COPYING COPYING.LIB
|
||||
# enabled.
|
||||
GST1_PLUGINS_BAD_LICENSE = LGPLv2+ LGPLv2.1+
|
||||
|
||||
GST1_PLUGINS_BAD_AUTORECONF = YES
|
||||
GST1_PLUGINS_BAD_AUTORECONF_OPTS = -I $(@D)/common/m4
|
||||
GST1_PLUGINS_BAD_GETTEXTIZE = YES
|
||||
|
||||
GST1_PLUGINS_BAD_CONF_OPTS = \
|
||||
--disable-examples \
|
||||
--disable-valgrind \
|
||||
--disable-directsound \
|
||||
--disable-wsapi \
|
||||
--disable-direct3d \
|
||||
--disable-direct3d9 \
|
||||
--disable-winks \
|
||||
--disable-android_media \
|
||||
--disable-apple_media \
|
||||
@@ -39,7 +33,6 @@ GST1_PLUGINS_BAD_CONF_OPTS += \
|
||||
--disable-voamrwbenc \
|
||||
--disable-bs2b \
|
||||
--disable-chromaprint \
|
||||
--disable-dash \
|
||||
--disable-dc1394 \
|
||||
--disable-dts \
|
||||
--disable-resindvd \
|
||||
@@ -51,7 +44,7 @@ GST1_PLUGINS_BAD_CONF_OPTS += \
|
||||
--disable-ladspa \
|
||||
--disable-lv2 \
|
||||
--disable-libde265 \
|
||||
--disable-strp \
|
||||
--disable-srtp \
|
||||
--disable-linsys \
|
||||
--disable-modplug \
|
||||
--disable-mimic \
|
||||
@@ -71,14 +64,10 @@ GST1_PLUGINS_BAD_CONF_OPTS += \
|
||||
--disable-gme \
|
||||
--disable-xvid \
|
||||
--disable-vdpau \
|
||||
--disable-sbc \
|
||||
--disable-schro \
|
||||
--disable-zbar \
|
||||
--disable-rtmp \
|
||||
--disable-spandsp \
|
||||
--disable-gsettings \
|
||||
--disable-sndio \
|
||||
--disable-hls \
|
||||
--disable-gtk3 \
|
||||
--disable-qt
|
||||
|
||||
@@ -381,12 +370,6 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-librfb
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-liveadder
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-liveadder
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MIDI),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-midi
|
||||
else
|
||||
@@ -431,6 +414,12 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-mxf
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_NETSIM),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-netsim
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-netsim
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NUVDEMUX),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-nuvdemux
|
||||
else
|
||||
@@ -473,10 +462,11 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-removesilence
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-rtp
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTMP),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-rtmp
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += rtmpdump
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-rtp
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-rtmp
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI),y)
|
||||
@@ -539,6 +529,12 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-videofilters
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOFRAME_AUDIOLEVEL),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-videoframe_audiolevel
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-videoframe_audiolevel
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOMEASURE),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-videomeasure
|
||||
else
|
||||
@@ -577,18 +573,6 @@ endif
|
||||
|
||||
# Plugins with dependencies
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SHM),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-shm
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-shm
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VCD),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-vcd
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-vcd
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_APEXSINK),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-apexsink
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += openssl
|
||||
@@ -603,13 +587,6 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-assrender
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VOAACENC),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-voaacenc
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += vo-aacenc
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-voaacenc
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_BZ2),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-bz2
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += bzip2
|
||||
@@ -637,13 +614,6 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-decklink
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBP),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-webp
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += webp
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-webp
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DIRECTFB),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-directfb
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += directfb
|
||||
@@ -651,6 +621,13 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-directfb
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DVB),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-dvb
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += dtv-scan-tables
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-dvb
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FAAD),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-faad
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += faad2
|
||||
@@ -665,6 +642,31 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-fbdev
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_GL),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-gl
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-gl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HLS),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-hls
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NETTLE),y)
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += nettle
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --with-hls-crypto=nettle
|
||||
else ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += libgcrypt
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --with-hls-crypto=libgcrypt \
|
||||
--with-libgcrypt-prefix=$(STAGING_DIR)/usr
|
||||
else
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += openssl
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --with-hls-crypto=openssl
|
||||
endif
|
||||
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-hls
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIBMMS),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-libmms
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += libmms
|
||||
@@ -680,13 +682,6 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-mpeg2enc
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-mpg123
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += mpg123
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-mpg123
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MUSEPACK),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-musepack
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += musepack
|
||||
@@ -743,10 +738,11 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-rsvg
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_GL),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-gl
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SBC),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-sbc
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += sbc
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-gl
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-sbc
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL),y)
|
||||
@@ -757,6 +753,12 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-sdl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SHM),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-shm
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-shm
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SNDFILE),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-sndfile
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += libsndfile
|
||||
@@ -764,18 +766,24 @@ else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-sndfile
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DVB),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-dvb
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += dtv-scan-tables
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VCD),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-vcd
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-dvb
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-vcd
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HLS),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-hls
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += gnutls
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VOAACENC),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-voaacenc
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += vo-aacenc
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-hls
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-voaacenc
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBP),y)
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --enable-webp
|
||||
GST1_PLUGINS_BAD_DEPENDENCIES += webp
|
||||
else
|
||||
GST1_PLUGINS_BAD_CONF_OPTS += --disable-webp
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_X265),y)
|
||||
|
||||
@@ -111,6 +111,7 @@ config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_ALSA
|
||||
select BR2_PACKAGE_ALSA_LIB
|
||||
select BR2_PACKAGE_ALSA_LIB_MIXER
|
||||
select BR2_PACKAGE_ALSA_LIB_PCM
|
||||
select BR2_PACKAGE_ALSA_LIB_SEQ
|
||||
help
|
||||
ALSA plugin library
|
||||
|
||||
@@ -126,6 +127,12 @@ config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_OGG
|
||||
help
|
||||
ogg stream manipulation (info about ogg: http://xiph.org)
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_OPUS
|
||||
bool "opus"
|
||||
select BR2_PACKAGE_OPUS
|
||||
help
|
||||
Opus codec for speech and audio.
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_PANGO
|
||||
bool "pango font renderer"
|
||||
depends on BR2_INSTALL_LIBSTDCPP # pango -> freetype
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.6.3.tar.xz.sha256sum
|
||||
sha256 b6154f8fdba4877e95efd94610ef0ada4f0171cd12eb829a3c3c97345d9c7a75 gst-plugins-base-1.6.3.tar.xz
|
||||
# From http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.8.2.tar.xz.sha256sum
|
||||
sha256 9d7109c8fb0a5dec8edb17b0053c59a46aba7ddf48dc48ea822ebbbd4339d38d gst-plugins-base-1.8.2.tar.xz
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GST1_PLUGINS_BASE_VERSION = 1.6.3
|
||||
GST1_PLUGINS_BASE_VERSION = 1.8.2
|
||||
GST1_PLUGINS_BASE_SOURCE = gst-plugins-base-$(GST1_PLUGINS_BASE_VERSION).tar.xz
|
||||
GST1_PLUGINS_BASE_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-base
|
||||
GST1_PLUGINS_BASE_INSTALL_STAGING = YES
|
||||
@@ -176,6 +176,13 @@ else
|
||||
GST1_PLUGINS_BASE_CONF_OPTS += --disable-ivorbis
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_OPUS),y)
|
||||
GST1_PLUGINS_BASE_CONF_OPTS += --enable-opus
|
||||
GST1_PLUGINS_BASE_DEPENDENCIES += opus
|
||||
else
|
||||
GST1_PLUGINS_BASE_CONF_OPTS += --disable-opus
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_OGG),y)
|
||||
GST1_PLUGINS_BASE_CONF_OPTS += --enable-ogg
|
||||
GST1_PLUGINS_BASE_DEPENDENCIES += libogg
|
||||
|
||||
@@ -279,6 +279,14 @@ config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_V4L2
|
||||
comment "v4l2 needs a toolchain w/ headers >= 3.0"
|
||||
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_V4L2_PROBE
|
||||
bool "v4l2-probe (m2m)"
|
||||
depends on BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_V4L2
|
||||
help
|
||||
Enables the V4L2 probe at plugin load time. This enables
|
||||
support for v4l2 transform devices, such as m2m
|
||||
devices. These plugins are registered as v4l2videoNconvert
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_CAIRO
|
||||
bool "cairo"
|
||||
select BR2_PACKAGE_CAIRO
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.6.3.tar.xz.sha256sum
|
||||
sha256 24b19db70b2a83461ebddfe20033db432dadfdb5d4b54ffb1dfa0d830134a177 gst-plugins-good-1.6.3.tar.xz
|
||||
# From http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.8.2.tar.xz.sha256sum
|
||||
sha256 8d7549118a3b7a009ece6bb38a05b66709c551d32d2adfd89eded4d1d7a23944 gst-plugins-good-1.8.2.tar.xz
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GST1_PLUGINS_GOOD_VERSION = 1.6.3
|
||||
GST1_PLUGINS_GOOD_VERSION = 1.8.2
|
||||
GST1_PLUGINS_GOOD_SOURCE = gst-plugins-good-$(GST1_PLUGINS_GOOD_VERSION).tar.xz
|
||||
GST1_PLUGINS_GOOD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-good
|
||||
GST1_PLUGINS_GOOD_LICENSE_FILES = COPYING
|
||||
@@ -30,8 +30,7 @@ GST1_PLUGINS_GOOD_CONF_OPTS += \
|
||||
--disable-jack \
|
||||
--disable-libdv \
|
||||
--disable-dv1394 \
|
||||
--disable-shout2 \
|
||||
--disable-taglib
|
||||
--disable-shout2
|
||||
|
||||
GST1_PLUGINS_GOOD_DEPENDENCIES = gstreamer1 gst1-plugins-base
|
||||
|
||||
@@ -323,6 +322,12 @@ else
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --disable-gst_v4l2
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_V4L2_PROBE),y)
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --enable-v4l2-probe
|
||||
else
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += --disable-v4l2-probe
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XORG7),y)
|
||||
GST1_PLUGINS_GOOD_DEPENDENCIES += xlib_libX11 xlib_libXext xlib_libXv
|
||||
GST1_PLUGINS_GOOD_CONF_OPTS += \
|
||||
|
||||
@@ -40,14 +40,10 @@ comment "plugins with external dependencies (there may be more available)"
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_DVDREAD
|
||||
bool "dvdread"
|
||||
depends on !BR2_STATIC_LIBS # libdvdread
|
||||
select BR2_PACKAGE_LIBDVDREAD
|
||||
help
|
||||
Access a DVD with dvdread
|
||||
|
||||
comment "dvdread needs a toolchain w/ dynamic library"
|
||||
depends on BR2_STATIC_LIBS
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_LAME
|
||||
bool "lame (*.mp3 audio encoder)"
|
||||
select BR2_PACKAGE_LAME
|
||||
@@ -61,6 +57,12 @@ config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MAD
|
||||
help
|
||||
mp3 decoding based on the mad library
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123
|
||||
bool "mpg123 (*.mp3 audio)"
|
||||
select BR2_PACKAGE_MPG123
|
||||
help
|
||||
mp3 decoding based on the mpg123 library
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPEG2DEC
|
||||
bool "mpeg2dec"
|
||||
select BR2_PACKAGE_LIBMPEG2
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.6.3.tar.xz.sha256sum
|
||||
sha256 2fecf7b7c7882f8f62f1900048f4013f98c214fb3d3303d8d812245bb41fd064 gst-plugins-ugly-1.6.3.tar.xz
|
||||
# From http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.8.2.tar.xz.sha256sum
|
||||
sha256 9c5b33a2a98fc1d6d6c99a1b536b1fb2de45f53cc8bf8ab85a8b8141fed1a8ac gst-plugins-ugly-1.8.2.tar.xz
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GST1_PLUGINS_UGLY_VERSION = 1.6.3
|
||||
GST1_PLUGINS_UGLY_VERSION = 1.8.2
|
||||
GST1_PLUGINS_UGLY_SOURCE = gst-plugins-ugly-$(GST1_PLUGINS_UGLY_VERSION).tar.xz
|
||||
GST1_PLUGINS_UGLY_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-ugly
|
||||
GST1_PLUGINS_UGLY_LICENSE_FILES = COPYING
|
||||
@@ -59,6 +59,10 @@ GST1_PLUGINS_UGLY_CONF_OPTS += --disable-realmedia
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_DVDREAD),y)
|
||||
# configure does not use pkg-config to detect libdvdread
|
||||
ifeq ($(BR2_PACKAGE_LIBDVDCSS)$(BR2_STATIC_LIBS),yy)
|
||||
GST1_PLUGINS_UGLY_CONF_ENV += LIBS="-ldvdcss"
|
||||
endif
|
||||
GST1_PLUGINS_UGLY_CONF_OPTS += --enable-dvdread
|
||||
GST1_PLUGINS_UGLY_DEPENDENCIES += libdvdread
|
||||
GST1_PLUGINS_UGLY_HAS_GPL_LICENSE = y
|
||||
@@ -81,6 +85,13 @@ else
|
||||
GST1_PLUGINS_UGLY_CONF_OPTS += --disable-mad
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPG123),y)
|
||||
GST1_PLUGINS_UGLY_CONF_OPTS += --enable-mpg123
|
||||
GST1_PLUGINS_UGLY_DEPENDENCIES += mpg123
|
||||
else
|
||||
GST1_PLUGINS_UGLY_CONF_OPTS += --disable-mpg123
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPEG2DEC),y)
|
||||
GST1_PLUGINS_UGLY_CONF_OPTS += --enable-mpeg2dec
|
||||
GST1_PLUGINS_UGLY_DEPENDENCIES += libmpeg2
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From http://gstreamer.freedesktop.org/src/gst-validate/gst-validate-1.6.0.tar.xz.sha256sum
|
||||
sha256 3baef8c7b5363293c20314a30afd54629849fc597669991fdcf92303602dafee gst-validate-1.6.0.tar.xz
|
||||
# From http://gstreamer.freedesktop.org/src/gst-validate/gst-validate-1.8.2.tar.xz.sha256sum
|
||||
sha256 33c5b585c5ca1659fe6c09fdf02e45d8132c0d386b405bf527b14ab481a0bafe gst-validate-1.8.2.tar.xz
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GST1_VALIDATE_VERSION = 1.6.0
|
||||
GST1_VALIDATE_VERSION = 1.8.2
|
||||
GST1_VALIDATE_SOURCE = gst-validate-$(GST1_VALIDATE_VERSION).tar.xz
|
||||
GST1_VALIDATE_SITE = http://gstreamer.freedesktop.org/src/gst-validate
|
||||
GST1_VALIDATE_LICENSE = LGPLv2.1+
|
||||
|
||||
@@ -20,7 +20,7 @@ config BR2_PACKAGE_GSTREAMER1_PARSE
|
||||
bool "enable command-line parser"
|
||||
default y
|
||||
help
|
||||
Enable command line parser for gstreamer. This may incrase the CPu
|
||||
Enable command line parser for gstreamer. This may increase the CPU
|
||||
overhead by a small amount.
|
||||
|
||||
config BR2_PACKAGE_GSTREAMER1_TRACE
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.6.3.tar.xz.sha256sum
|
||||
sha256 22f9568d67b87cf700a111f381144bd37cb93790a77e4e331db01fe854a37f24 gstreamer-1.6.3.tar.xz
|
||||
# From http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.8.2.tar.xz.sha256sum
|
||||
sha256 9dbebe079c2ab2004ef7f2649fa317cabea1feb4fb5605c24d40744b90918341 gstreamer-1.8.2.tar.xz
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GSTREAMER1_VERSION = 1.6.3
|
||||
GSTREAMER1_VERSION = 1.8.2
|
||||
GSTREAMER1_SOURCE = gstreamer-$(GSTREAMER1_VERSION).tar.xz
|
||||
GSTREAMER1_SITE = http://gstreamer.freedesktop.org/src/gstreamer
|
||||
GSTREAMER1_INSTALL_STAGING = YES
|
||||
|
||||
Reference in New Issue
Block a user