mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
package/alure: add minimp3 decoder option
Alure doesn't use/need an external minimp3 library. Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
9a12c2650a
commit
af4ce1f07e
@ -23,6 +23,11 @@ config BR2_PACKAGE_ALURE_FLAC_DECODER
|
|||||||
help
|
help
|
||||||
Enables the built-in FLAC decoder.
|
Enables the built-in FLAC decoder.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_ALURE_MINIMP3_DECODER
|
||||||
|
bool "minimp3 decoder"
|
||||||
|
help
|
||||||
|
Enables the built-in minimp3 decoder.
|
||||||
|
|
||||||
config BR2_PACKAGE_ALURE_OPUS_DECODER
|
config BR2_PACKAGE_ALURE_OPUS_DECODER
|
||||||
bool "opus decoder"
|
bool "opus decoder"
|
||||||
select BR2_PACKAGE_LIBOGG
|
select BR2_PACKAGE_LIBOGG
|
||||||
|
@ -16,7 +16,6 @@ ALURE_DEPENDENCIES = openal
|
|||||||
# Enable at least one built-in decoder (wave).
|
# Enable at least one built-in decoder (wave).
|
||||||
ALURE_CONF_OPTS = -DALURE_INSTALL=ON \
|
ALURE_CONF_OPTS = -DALURE_INSTALL=ON \
|
||||||
-DALURE_BUILD_EXAMPLES=OFF \
|
-DALURE_BUILD_EXAMPLES=OFF \
|
||||||
-DALURE_ENABLE_MINIMP3=OFF \
|
|
||||||
-DALURE_ENABLE_WAVE=ON
|
-DALURE_ENABLE_WAVE=ON
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_ALURE_FLAC_DECODER),y)
|
ifeq ($(BR2_PACKAGE_ALURE_FLAC_DECODER),y)
|
||||||
@ -25,6 +24,12 @@ else
|
|||||||
ALURE_CONF_OPTS += -DALURE_ENABLE_FLAC=OFF
|
ALURE_CONF_OPTS += -DALURE_ENABLE_FLAC=OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_ALURE_MINIMP3_DECODER),y)
|
||||||
|
ALURE_CONF_OPTS += -DALURE_ENABLE_MINIMP3=ON
|
||||||
|
else
|
||||||
|
ALURE_CONF_OPTS += -DALURE_ENABLE_MINIMP3=OFF
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_ALURE_OPUS_DECODER),y)
|
ifeq ($(BR2_PACKAGE_ALURE_OPUS_DECODER),y)
|
||||||
ALURE_CONF_OPTS += -DALURE_ENABLE_OPUS=ON
|
ALURE_CONF_OPTS += -DALURE_ENABLE_OPUS=ON
|
||||||
ALURE_DEPENDENCIES += libogg opus
|
ALURE_DEPENDENCIES += libogg opus
|
||||||
|
Loading…
x
Reference in New Issue
Block a user