Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,78 @@
From 1725e702a3622cb45c8142622dd419fa0c410ac9 Mon Sep 17 00:00:00 2001
From: Peter Korsgaard <jacmet@sunsite.dk>
Date: Wed, 12 Sep 2012 09:10:35 +0200
Subject: [PATCH] gst-plugins-bad: opus + jpegformat: unbreak non-debug build
opus + jpegformat plugin builds fail when gstreamer is configured with
--disable-gst-debug as they are checking the GST_DISABLE_DEBUG symbol
instead of GST_DISABLE_GST_DEBUG.
Submitted upstream as https://bugzilla.gnome.org/show_bug.cgi?id=683850
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
ext/opus/gstopusdec.c | 2 +-
ext/opus/gstopusenc.c | 4 ++--
gst/jpegformat/gstjpegparse.c | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/ext/opus/gstopusdec.c b/ext/opus/gstopusdec.c
index 0e2805c..ab7221d 100644
--- a/ext/opus/gstopusdec.c
+++ b/ext/opus/gstopusdec.c
@@ -357,7 +357,7 @@ opus_dec_chain_parse_data (GstOpusDec * dec, GstBuffer * buffer)
GST_DEBUG_OBJECT (dec, "Creating decoder with %d channels, %d Hz",
dec->n_channels, dec->sample_rate);
-#ifndef GST_DISABLE_DEBUG
+#ifndef GST_DISABLE_GST_DEBUG
gst_opus_common_log_channel_mapping_table (GST_ELEMENT (dec), opusdec_debug,
"Mapping table", dec->n_channels, dec->channel_mapping);
#endif
diff --git a/ext/opus/gstopusenc.c b/ext/opus/gstopusenc.c
index 240a2cb..d991795 100644
--- a/ext/opus/gstopusenc.c
+++ b/ext/opus/gstopusenc.c
@@ -589,7 +589,7 @@ gst_opus_enc_setup_channel_mappings (GstOpusEnc * enc,
}
}
-#ifndef GST_DISABLE_DEBUG
+#ifndef GST_DISABLE_GST_DEBUG
GST_INFO_OBJECT (enc,
"Mapping tables built: %d channels, %d stereo streams", enc->n_channels,
enc->n_stereo_streams);
@@ -654,7 +654,7 @@ gst_opus_enc_setup (GstOpusEnc * enc)
{
int error = OPUS_OK;
-#ifndef GST_DISABLE_DEBUG
+#ifndef GST_DISABLE_GST_DEBUG
GST_DEBUG_OBJECT (enc,
"setup: %d Hz, %d channels, %d stereo streams, family %d",
enc->sample_rate, enc->n_channels, enc->n_stereo_streams,
diff --git a/gst/jpegformat/gstjpegparse.c b/gst/jpegformat/gstjpegparse.c
index f984a52..b4af9ed 100644
--- a/gst/jpegformat/gstjpegparse.c
+++ b/gst/jpegformat/gstjpegparse.c
@@ -545,7 +545,7 @@ gst_jpeg_parse_skip_marker (GstJpegParse * parse,
if (!gst_byte_reader_get_uint16_be (reader, &size))
return FALSE;
-#ifndef GST_DISABLE_DEBUG
+#ifndef GST_DISABLE_GST_DEBUG
/* We'd pry the id of the skipped application segment */
if (marker >= APP0 && marker <= APP15) {
const gchar *id_str = NULL;
@@ -561,7 +561,7 @@ gst_jpeg_parse_skip_marker (GstJpegParse * parse,
#else
GST_DEBUG_OBJECT (parse, "unhandled marker %x skiping %u bytes", marker,
size);
-#endif // GST_DISABLE_DEBUG
+#endif // GST_DISABLE_GST_DEBUG
if (!gst_byte_reader_skip (reader, size - 2))
return FALSE;
--
1.7.10

View File

@@ -0,0 +1,22 @@
Fix dfb-example
Order of inclusion gives a strange effect on the definition of
gst_debug_log. Swapping the include statements solve it.
Not upstreamed since there will be no more updates to this version
of gst-plugins-bad.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
diff -rup gst-plugins-bad-0.10.23/ext/directfb/dfb-example.c gst-plugins-bad-0.10.23.fixed/ext/directfb/dfb-example.c
--- gst-plugins-bad-0.10.23/ext/directfb/dfb-example.c 2011-12-11 19:49:11.000000000 +0100
+++ gst-plugins-bad-0.10.23.fixed/ext/directfb/dfb-example.c 2013-05-13 00:32:00.507469138 +0200
@@ -1,7 +1,7 @@
-#include <directfb.h>
#include <stdio.h>
#include <gst/gst.h>
+#include <directfb.h>
static IDirectFB *dfb = NULL;
static IDirectFBSurface *primary = NULL;

View File

@@ -0,0 +1,44 @@
[PATCH] vp8: drop buggy libvpx legacy handling
Legacy handling for older libvpx versions were added back in 2010, but this
was unfortunately buggy as these symbols are enums and not defines - So they
are never defined and the legacy symbols always used.
Now that the legacy symbols are completely removed from libvpx from v1.4.0
onwards this breaks. Fix it by simply dropping the legacy handling, nobody
should be using libvpx versions from before 2010 (or gstreamer 0.10 for that
matter) any more.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
ext/vp8/gstvp8utils.h | 17 -----------------
1 file changed, 17 deletions(-)
Index: gst-plugins-bad-0.10.23/ext/vp8/gstvp8utils.h
===================================================================
--- gst-plugins-bad-0.10.23.orig/ext/vp8/gstvp8utils.h
+++ gst-plugins-bad-0.10.23/ext/vp8/gstvp8utils.h
@@ -25,23 +25,6 @@
G_BEGIN_DECLS
-/* Some compatibility defines for older libvpx versions */
-#ifndef VPX_IMG_FMT_I420
-#define VPX_IMG_FMT_I420 IMG_FMT_I420
-#endif
-
-#ifndef VPX_PLANE_Y
-#define VPX_PLANE_Y PLANE_Y
-#endif
-
-#ifndef VPX_PLANE_U
-#define VPX_PLANE_U PLANE_U
-#endif
-
-#ifndef VPX_PLANE_V
-#define VPX_PLANE_V PLANE_V
-#endif
-
const char * gst_vpx_error_name (vpx_codec_err_t status);
G_END_DECLS

View File

@@ -0,0 +1,337 @@
menuconfig BR2_PACKAGE_GST_PLUGINS_BAD
bool "gst-plugins-bad"
select BR2_PACKAGE_GST_PLUGINS_BASE
help
A set of plug-ins for GStreamer that may be of poor quality or
lacking some features.
http://gstreamer.freedesktop.org/
if BR2_PACKAGE_GST_PLUGINS_BAD
comment "dependency-less plugins"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ADPCMDEC
bool "adpcmdec"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ADPCMENC
bool "adpcmenc"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AIFF
bool "aiff"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ASFMUX
bool "asfmux"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT
bool "autoconvert"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUDIOVISUALIZERS
bool "audiovisualizers"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_BAYER
bool "bayer"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CAMERABIN
bool "camerabin"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CAMERABIN2
bool "camerabin2"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDXAPARSE
bool "cdxaparse"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_COLOREFFECTS
bool "coloreffects"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_COLORSPACE
bool "colorspace"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DATAURISRC
bool "dataurisrc"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DCCP
bool "dccp"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS
bool "debugutils"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK
depends on BR2_INSTALL_LIBSTDCPP
bool "decklink"
comment "decklink needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF
bool "dtmf"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVBSUBOVERLAY
bool "dvdsuboverlay"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDSPU
bool "dvdspu"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FACEOVERLAY
bool "faceoverlay"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FESTIVAL
bool "festival"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FIELDANALYSIS
bool "fieldanalysis"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEVERB
bool "freeverb"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEZE
bool "freeze"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREI0R
bool "frei0r"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GAUDIEFFECTS
bool "gaudieffects"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GEOMETRICTRANSFORM
bool "geometrictransform"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GSETTINGS
bool "gsettings"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE
bool "h264parse"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HDVPARSE
bool "hdvparse"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HLS
bool "hls"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ID3TAG
bool "id3tag"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_INTER
bool "inter"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_INTERLACE
bool "interlace"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_IVFPARSE
bool "ivfparse"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_JP2KDECIMATOR
bool "jp2kdecimator"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_JPEGFORMAT
bool "jpegformat"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LEGACYRESAMPLE
bool "legacyresample"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB
bool "librfb"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LINSYS
bool "linsys"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER
bool "liveadder"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGDEMUX
bool "mpegdemux"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGPSMUX
bool "mpegpsmux"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGTSDEMUX
bool "mpegtsdemux"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGTSMUX
bool "mpegtsmux"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGVIDEOPARSE
bool "mpegvideoparse"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MVE
bool "mve"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MXF
bool "mxf"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NSF
bool "nsf"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NUVDEMUX
bool "nuvdemux"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PATCHDETECT
bool "patchdetect"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PCAPPARSE
bool "pcapparse"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PNM
bool "pnm"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RAWPARSE
bool "rawparse"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_REAL
bool "real"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_REMOVESILENCE
bool "removesilence"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RTPMUX
bool "rtpmux"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RTPVP8
bool "rtpvp8"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SCALETEMPO
bool "scaletempo"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDI
bool "sdi"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDP
bool "sdp"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SEGMENTCLIP
bool "segmentclip"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN
bool "siren"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SMOOTH
bool "smooth"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SPEED
bool "speed"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_STEREO
bool "stereo"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SUBENC
bool "subenc"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_TTA
bool "tta"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOFILTERS
bool "videofilters"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOMAXRATE
bool "videomaxrate"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOMEASURE
bool "videomeasure"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOPARSERS
bool "videoparsers"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOSIGNAL
bool "videosignal"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VMNC
bool "vmnc"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_Y4M
bool "y4m"
comment "plugins with external dependencies (there may be more available)"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK
bool "apexsink"
select BR2_PACKAGE_OPENSSL
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_BZ2
bool "bz2"
select BR2_PACKAGE_BZIP2
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDAUDIO
bool "cdaudio"
depends on !BR2_nios2 # libcdaudio
select BR2_PACKAGE_LIBCDAUDIO
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CURL
bool "curl"
select BR2_PACKAGE_LIBCURL
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DIRECTFB
bool "directfb"
depends on BR2_PACKAGE_DIRECTFB
default y
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB
bool "dvb"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FBDEV
bool "fbdev"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FAAD
bool "faad"
select BR2_PACKAGE_FAAD2
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBMMS
bool "libmms"
depends on BR2_USE_WCHAR # libmms -> libglib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libmms -> libglib2
select BR2_PACKAGE_LIBMMS
comment "libmms needs a toolchain w/ wchar, threads"
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MUSEPACK
bool "musepack"
select BR2_PACKAGE_MUSEPACK
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON
bool "neon"
select BR2_PACKAGE_NEON
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_OPUS
bool "opus"
select BR2_PACKAGE_OPUS
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RSVG
bool "rsvg"
depends on BR2_INSTALL_LIBSTDCPP # librsvg -> pango
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # librsvg -> pango -> harfbuzz
select BR2_PACKAGE_LIBRSVG
comment "rsvg plugin needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_SYNC_4
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDL
bool "sdl"
select BR2_PACKAGE_SDL
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SNDFILE
bool "sndfile"
select BR2_PACKAGE_LIBSNDFILE
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VCD
bool "vcd"
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VP8
bool "vp8"
select BR2_PACKAGE_LIBVPX
config BR2_PACKAGE_GST_PLUGINS_BAD_ZBAR
bool "zbar"
depends on BR2_TOOLCHAIN_HAS_THREADS # zbar-> libv4l
depends on BR2_USE_MMU # zbar-> libv4l
depends on !BR2_STATIC_LIBS # zbar-> libv4l
depends on BR2_INSTALL_LIBSTDCPP # zbar-> libv4l
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # zbar-> libv4l
select BR2_PACKAGE_ZBAR
comment "zbar plugin needs a toolchain w/ threads, dynamic library, C++ and headers >= 3.0"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \
|| !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
endif

View File

@@ -0,0 +1,2 @@
# From http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-0.10.23.tar.xz.md5
md5 e4822fa2cc933768e2998311a1565979 gst-plugins-bad-0.10.23.tar.xz

View File

@@ -0,0 +1,598 @@
################################################################################
#
# gst-plugins-bad
#
################################################################################
GST_PLUGINS_BAD_VERSION = 0.10.23
GST_PLUGINS_BAD_SOURCE = gst-plugins-bad-$(GST_PLUGINS_BAD_VERSION).tar.xz
GST_PLUGINS_BAD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-bad
# COPYING.LIB is in fact v2, but most of the code is v2.1+
GST_PLUGINS_BAD_LICENSE = LGPLv2.1+, GPLv2+
GST_PLUGINS_BAD_LICENSE_FILES = COPYING.LIB COPYING
GST_PLUGINS_BAD_CONF_OPTS = \
--disable-examples
GST_PLUGINS_BAD_DEPENDENCIES = gst-plugins-base gstreamer
ifeq ($(BR2_PACKAGE_ORC),y)
GST_PLUGINS_BAD_DEPENDENCIES += orc
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ADPCMDEC),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-adpcmdec
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-adpcmdec
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ADPCMENC),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-adpcmenc
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-adpcmenc
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AIFF),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-aiff
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-aiff
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ASFMUX),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-asfmux
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-asfmux
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUDIOVISUALIZERS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-audiovisualizers
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-audiovisualizers
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-autoconvert
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-autoconvert
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_BAYER),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-bayer
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-bayer
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CAMERABIN),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-camerabin
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-camerabin
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CAMERABIN2),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-camerabin2
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-camerabin2
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDXAPARSE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-cdxaparse
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-cdxaparse
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_COLOREFFECTS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-coloreffects
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-coloreffects
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_COLORSPACE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-colorspace
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-colorspace
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DATAURISRC),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-dataurisrc
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-dataurisrc
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DCCP),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-dccp
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-dccp
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-debugutils
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-debugutils
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-decklink
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-decklink
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-dtmf
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-dtmf
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVBSUBOVERLAY),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-dvbsuboverlay
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-dvbsuboverlay
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDSPU),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-dvdspu
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-dvdspu
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FACEOVERLAY),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-faceoverlay
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-faceoverlay
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FESTIVAL),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-festival
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-festival
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FIELDANALYSIS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-fieldanalysis
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-fieldanalysis
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEZE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-freeze
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-freeze
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEVERB),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-freeverb
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-freeverb
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREI0R),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-frei0r
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-frei0r
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GAUDIEFFECTS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-gaudieffects
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-gaudieffects
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GEOMETRICTRANSFORM),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-geometrictransform
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-geometrictransform
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GSETTINGS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-gsettings
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-gsettings
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-h264parse
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-h264parse
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HDVPARSE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-hdvparse
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-hdvparse
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HLS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-hls
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-hls
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ID3TAG),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-id3tag
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-id3tag
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_INTER),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-inter
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-inter
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_INTERLACE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-interlace
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-interlace
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_IVFPARSE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-ivfparse
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-ivfparse
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_JP2KDECIMATOR),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-jp2kdecimator
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-jp2kdecimator
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_JPEGFORMAT),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-jpegformat
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-jpegformat
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LEGACYRESAMPLE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-legacyresample
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-legacyresample
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-librfb
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-librfb
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LINSYS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-linsys
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-linsys
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-liveadder
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-liveadder
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGDEMUX),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-mpegdemux
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-mpegdemux
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGPSMUX),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-mpegpsmux
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-mpegpsmux
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGTSDEMUX),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-mpegtsdemux
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-mpegtsdemux
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGTSMUX),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-mpegtsmux
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-mpegtsmux
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGVIDEOPARSE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-mpegvideoparse
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-mpegvideoparse
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MVE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-mve
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-mve
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MXF),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-mxf
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-mxf
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NSF),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-nsf
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-nsf
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NUVDEMUX),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-nuvdemux
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-nuvdemux
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PATCHDETECT),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-patchdetect
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-patchdetect
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PCAPPARSE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-pcapparse
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-pcapparse
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PNM),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-pnm
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-pnm
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RAWPARSE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-rawparse
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-rawparse
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_REAL),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-real
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-real
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_REMOVESILENCE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-removesilence
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-removesilence
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RTPMUX),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-rtpmux
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-rtpmux
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RTPVP8),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-rtpvp8
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-rtpvp8
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SCALETEMPO),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-scaletempo
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-scaletempo
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDI),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-sdi
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-sdi
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDP),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-sdp
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-sdp
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SEGMENTCLIP),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-segmentclip
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-segmentclip
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-siren
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-siren
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SMOOTH),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-smooth
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-smooth
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SPEED),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-speed
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-speed
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SUBENC),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-subenc
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-subenc
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_STEREO),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-stereo
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-stereo
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_TTA),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-tta
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-tta
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOFILTERS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-videofilters
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-videofilters
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOMAXRATE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-videomaxrate
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-videomaxrate
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOMEASURE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-videomeasure
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-videomeasure
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOPARSERS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-videoparsers
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-videoparsers
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOSIGNAL),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-videosignal
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-videosignal
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VMNC),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-vmnc
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-vmnc
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_Y4M),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-y4m
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-y4m
endif
# plugins with deps
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-apexsink
GST_PLUGINS_BAD_DEPENDENCIES += openssl
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-apexsink
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_BZ2),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-bz2
GST_PLUGINS_BAD_DEPENDENCIES += bzip2
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-bz2
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDAUDIO),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-cdaudio
GST_PLUGINS_BAD_DEPENDENCIES += libcdaudio
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-cdaudio
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CURL),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-curl
GST_PLUGINS_BAD_DEPENDENCIES += libcurl
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-curl
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DIRECTFB),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-directfb
GST_PLUGINS_BAD_DEPENDENCIES += directfb
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-directfb
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-dvb
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-dvb
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FAAD),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-faad
GST_PLUGINS_BAD_DEPENDENCIES += faad2
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-faad
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FBDEV),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-fbdev
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-fbdev
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBMMS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-libmms
GST_PLUGINS_BAD_DEPENDENCIES += libmms
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-libmms
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MUSEPACK),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-musepack
GST_PLUGINS_BAD_DEPENDENCIES += musepack
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-musepack
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-neon
GST_PLUGINS_BAD_DEPENDENCIES += neon
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-neon
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_OPUS),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-opus
GST_PLUGINS_BAD_DEPENDENCIES += opus
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-opus
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RSVG),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-rsvg
GST_PLUGINS_BAD_DEPENDENCIES += librsvg
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-rsvg
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDL),y)
GST_PLUGINS_BAD_CONF_ENV += ac_cv_path_SDL_CONFIG=$(STAGING_DIR)/usr/bin/sdl-config
GST_PLUGINS_BAD_CONF_OPTS += --enable-sdl
GST_PLUGINS_BAD_DEPENDENCIES += sdl
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-sdl
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SNDFILE),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-sndfile
GST_PLUGINS_BAD_DEPENDENCIES += libsndfile
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-sndfile
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VCD),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-vcd
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-vcd
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VP8),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-vp8
GST_PLUGINS_BAD_DEPENDENCIES += libvpx
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-vp8
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_ZBAR),y)
GST_PLUGINS_BAD_CONF_OPTS += --enable-zbar
GST_PLUGINS_BAD_DEPENDENCIES += zbar
else
GST_PLUGINS_BAD_CONF_OPTS += --disable-zbar
endif
$(eval $(autotools-package))