Commit e0402679 authored by Sven Neumann's avatar Sven Neumann Committed by Peter Korsgaard
Browse files

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: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent e67b65ee
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -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"

+0 −7
Original line number Diff line number Diff line
@@ -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
+4 −0
Original line number Diff line number Diff line
@@ -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
+7 −0
Original line number Diff line number Diff line
@@ -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