$(call Package/squeezelite/default)
TITLE+= (full)
DEPENDS+= +libflac +libvorbis +libmpg123 +libfaad2 \
- +SQUEEZELITE_WMA:libffmpeg-audio-dec \
- +SQUEEZELITE_SSL:libopenssl
+ +SQUEEZELITE_OPUS:libopusfile \
+ +SQUEEZELITE_SSL:libopenssl \
+ +SQUEEZELITE_WMA:libffmpeg-audio-dec
VARIANT:=full
endef
help
Include SSL/TLS support for use with e.g. https media URLs
default n
+
+ config SQUEEZELITE_OPUS
+ bool "Opus codec support"
+ help
+ Include Opus codec support
+ default n
endef
define Package/squeezelite-full/config
Squeezelite is a small headless squeezebox emulator for linux using alsa audio output
It is aimed at supporting high quality audio at multiple sample rates including
44.1/48/88.2/96/176.4/192k/352.8/384kHz
- Supported codecs: mp3, flac, ogg, aac, (wma and alac via ffmpeg)
+ Supported codecs: mp3, flac, ogg, aac, (wma and alac via ffmpeg), opus (optional)
Native support for PCM builtin
Optional support of DSD playback via PCM for DoP capable DAC
Optional resampling to match sound device
opts+= -DUSE_SSL
endif
+ifeq ($(CONFIG_SQUEEZELITE_OPUS),y)
+ opts+= -DOPUS
+ TARGET_CFLAGS+=-I$(STAGING_DIR)/usr/include/opus
+endif
+
ifeq ($(BUILD_VARIANT),full)
opts+= -DLINKALL
endif