mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-01 23:47:42 +00:00
gst-plugins-good: bump version
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
def45ab622
commit
531d31d286
@ -45,6 +45,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_APETAG
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUDIOFX
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUDIOFX
|
||||||
bool "audiofx"
|
bool "audiofx"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUDIOPARSERS
|
||||||
|
bool "audioparsers"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUPARSE
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUPARSE
|
||||||
bool "auparse"
|
bool "auparse"
|
||||||
|
|
||||||
@ -94,6 +97,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_IMAGEFREEZE
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_INTERLEAVE
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_INTERLEAVE
|
||||||
bool "interleave"
|
bool "interleave"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ISOMP4
|
||||||
|
bool "isomp4"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LAW
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LAW
|
||||||
bool "law"
|
bool "law"
|
||||||
|
|
||||||
@ -112,9 +118,6 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIFILE
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIPART
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIPART
|
||||||
bool "multipart"
|
bool "multipart"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_QTDEMUX
|
|
||||||
bool "qtdemux"
|
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN
|
||||||
bool "replaygain"
|
bool "replaygain"
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# gst-plugins-good
|
# gst-plugins-good
|
||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
GST_PLUGINS_GOOD_VERSION = 0.10.28
|
GST_PLUGINS_GOOD_VERSION = 0.10.30
|
||||||
GST_PLUGINS_GOOD_SOURCE = gst-plugins-good-$(GST_PLUGINS_GOOD_VERSION).tar.bz2
|
GST_PLUGINS_GOOD_SOURCE = gst-plugins-good-$(GST_PLUGINS_GOOD_VERSION).tar.bz2
|
||||||
GST_PLUGINS_GOOD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-good
|
GST_PLUGINS_GOOD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-good
|
||||||
|
|
||||||
@ -72,6 +72,12 @@ else
|
|||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-audiofx
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-audiofx
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUDIOPARSERS),y)
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-audioparsers
|
||||||
|
else
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-audioparsers
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUPARSE),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUPARSE),y)
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --enable-auparse
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-auparse
|
||||||
else
|
else
|
||||||
@ -168,6 +174,12 @@ else
|
|||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-interleave
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-interleave
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ISOMP4),y)
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-isomp4
|
||||||
|
else
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-isomp4
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LAW),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LAW),y)
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --enable-law
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-law
|
||||||
else
|
else
|
||||||
@ -204,12 +216,6 @@ else
|
|||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-multipart
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-multipart
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_QTDEMUX),y)
|
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --enable-qtdemux
|
|
||||||
else
|
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-qtdemux
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN),y)
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --enable-replaygain
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-replaygain
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user