mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-03 08:27:43 +00:00
mpd: new features
* Add libcue support (.cue file parsing) * Add lame support (mp3 encoding) * Fix slight typo in Config.in wrt LIBCUEFILE Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
b92f5b7307
commit
a74b4044b0
@ -53,6 +53,18 @@ config BR2_PACKAGE_MPD_FLAC
|
|||||||
Enable flac input/streaming support.
|
Enable flac input/streaming support.
|
||||||
Select this if you want to play back FLAC files.
|
Select this if you want to play back FLAC files.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_MPD_LAME
|
||||||
|
bool "lame"
|
||||||
|
select BR2_PACKAGE_LAME
|
||||||
|
help
|
||||||
|
Enable lame (mp3) encoding support.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_MPD_LIBCUE
|
||||||
|
bool "libcue"
|
||||||
|
select BR2_PACKAGE_LIBCUE
|
||||||
|
help
|
||||||
|
Enable cue file support.
|
||||||
|
|
||||||
config BR2_PACKAGE_MPD_LIBSAMPLERATE
|
config BR2_PACKAGE_MPD_LIBSAMPLERATE
|
||||||
bool "libsamplerate"
|
bool "libsamplerate"
|
||||||
select BR2_PACKAGE_LIBSAMPLERATE
|
select BR2_PACKAGE_LIBSAMPLERATE
|
||||||
@ -86,7 +98,7 @@ config BR2_PACKAGE_MPD_MPG123
|
|||||||
|
|
||||||
config BR2_PACKAGE_MPD_MUSEPACK
|
config BR2_PACKAGE_MPD_MUSEPACK
|
||||||
bool "musepack"
|
bool "musepack"
|
||||||
select BR2_PACKAGE_LIBCUE
|
select BR2_PACKAGE_LIBCUEFILE
|
||||||
select BR2_PACKAGE_LIBREPLAYGAIN
|
select BR2_PACKAGE_LIBREPLAYGAIN
|
||||||
select BR2_PACKAGE_MUSEPACK
|
select BR2_PACKAGE_MUSEPACK
|
||||||
help
|
help
|
||||||
|
@ -44,6 +44,18 @@ else
|
|||||||
MPD_CONF_OPT += --disable-curl
|
MPD_CONF_OPT += --disable-curl
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_MPD_LAME),y)
|
||||||
|
MPD_DEPENDENCIES += lame
|
||||||
|
else
|
||||||
|
MPD_CONF_OPT += --disable-lame-encoder
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_MPD_LIBCUE),y)
|
||||||
|
MPD_DEPENDENCIES += libcue
|
||||||
|
else
|
||||||
|
MPD_CONF_OPT += --disable-cue
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_MPD_LIBSAMPLERATE),y)
|
ifeq ($(BR2_PACKAGE_MPD_LIBSAMPLERATE),y)
|
||||||
MPD_DEPENDENCIES += libsamplerate
|
MPD_DEPENDENCIES += libsamplerate
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user