gst-plugins: ivborbis (aka tremor) moved to gst-plugins-base

The integer vorbis decoder moved from gst-plugins-bad to
gst-plugins-base.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Sven Neumann 2011-07-07 09:39:01 +02:00 committed by Peter Korsgaard
parent e67b65eed8
commit e04026794b
4 changed files with 11 additions and 11 deletions

View File

@ -192,10 +192,6 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDL
bool "sdl"
select BR2_PACKAGE_SDL
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_TREMOR
bool "tremor"
select BR2_PACKAGE_TREMOR
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VCD
bool "vcd"

View File

@ -355,13 +355,6 @@ else
GST_PLUGINS_BAD_CONF_OPT += --disable-sdl
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_TREMOR),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-ivorbis
GST_PLUGINS_BAD_DEPENDENCIES += tremor
else
GST_PLUGINS_BAD_CONF_OPT += --disable-ivorbis
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VCD),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-vcd
else

View File

@ -86,6 +86,10 @@ config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_THEORA
bool "theora (*.ogg video)"
select BR2_PACKAGE_LIBTHEORA
config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TREMOR
bool "tremor"
select BR2_PACKAGE_TREMOR
config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VORBIS
bool "vorbis (*.ogg audio)"
select BR2_PACKAGE_LIBVORBIS

View File

@ -156,6 +156,13 @@ else
GST_PLUGINS_BASE_CONF_OPT += --disable-theora
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TREMOR),y)
GST_PLUGINS_BASE_CONF_OPT += --enable-ivorbis
GST_PLUGINS_BASE_DEPENDENCIES += tremor
else
GST_PLUGINS_BASE_CONF_OPT += --disable-ivorbis
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VORBIS),y)
GST_PLUGINS_BASE_CONF_OPT += --enable-vorbis
GST_PLUGINS_BASE_DEPENDENCIES += libvorbis