mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 07:57:43 +00:00
gst-plugins-good: add wavpack + gdkpixbuf options
Based on patch by Bogdan Radulescu <bogdan_radulescu99@yahoo.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
d3ffea3103
commit
3d3dcd932b
@ -186,6 +186,10 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLAC
|
|||||||
bool "flac (libFLAC)"
|
bool "flac (libFLAC)"
|
||||||
select BR2_PACKAGE_FLAC
|
select BR2_PACKAGE_FLAC
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GDKPIXBUF
|
||||||
|
bool "gdkpixbuf"
|
||||||
|
select BR2_PACKAGE_GDK_PIXBUF
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS
|
||||||
bool "ossaudio (OSS audio)"
|
bool "ossaudio (OSS audio)"
|
||||||
|
|
||||||
@ -205,4 +209,8 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SPEEX
|
|||||||
bool "speex"
|
bool "speex"
|
||||||
select BR2_PACKAGE_SPEEX
|
select BR2_PACKAGE_SPEEX
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPACK
|
||||||
|
bool "wavpack (*.wv audio)"
|
||||||
|
select BR2_PACKAGE_WAVPACK
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -342,6 +342,13 @@ else
|
|||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-flac
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-flac
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GDKPIXBUF),y)
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-gdk_pixbuf
|
||||||
|
GST_PLUGINS_GOOD_DEPENDENCIES += gdk-pixbuf
|
||||||
|
else
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-gdk_pixbuf
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS),y)
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --enable-oss
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-oss
|
||||||
else
|
else
|
||||||
@ -375,4 +382,11 @@ else
|
|||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-speex
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-speex
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPACK),y)
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-wavpack
|
||||||
|
GST_PLUGINS_GOOD_DEPENDENCIES += wavpack
|
||||||
|
else
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-wavpack
|
||||||
|
endif
|
||||||
|
|
||||||
$(eval $(autotools-package))
|
$(eval $(autotools-package))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user