mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-31 15:07:43 +00:00
mpd: add twolame support
Now that there's a twolame package we can add support for it in mpd. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
0e55e674c0
commit
325dce5f97
@ -184,6 +184,16 @@ config BR2_PACKAGE_MPD_TREMOR
|
|||||||
Enable vorbis input support.
|
Enable vorbis input support.
|
||||||
Select this if you want to play back OGG files on softfloat targets.
|
Select this if you want to play back OGG files on softfloat targets.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_MPD_TWOLAME
|
||||||
|
bool "twolame"
|
||||||
|
depends on BR2_LARGEFILE # twolame -> libsndfile
|
||||||
|
select BR2_PACKAGE_TWOLAME
|
||||||
|
help
|
||||||
|
Enable TwoLAME mp2 encoding.
|
||||||
|
|
||||||
|
comment "twolame support needs a toolchain w/ largefile"
|
||||||
|
depends on !BR2_LARGEFILE
|
||||||
|
|
||||||
config BR2_PACKAGE_MPD_VORBIS
|
config BR2_PACKAGE_MPD_VORBIS
|
||||||
bool "vorbis"
|
bool "vorbis"
|
||||||
select BR2_PACKAGE_LIBOGG
|
select BR2_PACKAGE_LIBOGG
|
||||||
|
@ -132,6 +132,11 @@ MPD_DEPENDENCIES += tremor
|
|||||||
MPD_CONF_OPT += --with-tremor
|
MPD_CONF_OPT += --with-tremor
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_MPD_TWOLAME),y)
|
||||||
|
MPD_DEPENDENCIES += twolame
|
||||||
|
MPD_CONF_OPT += --enable-twolame-encoder
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_MPD_WAVPACK),y)
|
ifeq ($(BR2_PACKAGE_MPD_WAVPACK),y)
|
||||||
MPD_DEPENDENCIES += wavpack
|
MPD_DEPENDENCIES += wavpack
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user