gst1-plugins-bad: add sbc support

Signed-off-by: Marcin Nowakowski <marcin.nowakowski@imgtec.com>
Reviewed-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Marcin Nowakowski 2016-05-19 20:01:35 +02:00 committed by Peter Korsgaard
parent 6da6fec4e2
commit 5d9389ebc2
2 changed files with 11 additions and 1 deletions

View File

@ -638,6 +638,10 @@ comment "rsvg plugin needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP depends on !BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_SYNC_4 depends on BR2_TOOLCHAIN_HAS_SYNC_4
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SBC
bool "sbc"
select BR2_PACKAGE_SBC
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL
bool "sdl" bool "sdl"
select BR2_PACKAGE_SDL select BR2_PACKAGE_SDL

View File

@ -71,7 +71,6 @@ GST1_PLUGINS_BAD_CONF_OPTS += \
--disable-gme \ --disable-gme \
--disable-xvid \ --disable-xvid \
--disable-vdpau \ --disable-vdpau \
--disable-sbc \
--disable-schro \ --disable-schro \
--disable-zbar \ --disable-zbar \
--disable-rtmp \ --disable-rtmp \
@ -743,6 +742,13 @@ else
GST1_PLUGINS_BAD_CONF_OPTS += --disable-rsvg GST1_PLUGINS_BAD_CONF_OPTS += --disable-rsvg
endif endif
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-sbc
endif
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL),y) ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDL),y)
GST1_PLUGINS_BAD_CONF_ENV += ac_cv_path_SDL_CONFIG=$(STAGING_DIR)/usr/bin/sdl-config GST1_PLUGINS_BAD_CONF_ENV += ac_cv_path_SDL_CONFIG=$(STAGING_DIR)/usr/bin/sdl-config
GST1_PLUGINS_BAD_CONF_OPTS += --enable-sdl GST1_PLUGINS_BAD_CONF_OPTS += --enable-sdl