From ab7ae0a657bcd7ca2726ff4f17b1f613e4e55e1b Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Thu, 30 Jan 2020 21:07:25 -0800 Subject: [PATCH] mpd: replace mpg123 with libmad libmad is almost half the size of libmpg123. The docoding is done with integers instead of floats. Signed-off-by: Rosen Penev (cherry picked from commit 5bd4ef4035b0c92705c5e631507d4996a30501c7) --- sound/mpd/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sound/mpd/Makefile b/sound/mpd/Makefile index 2aa812adc5..05fac8fbe4 100644 --- a/sound/mpd/Makefile +++ b/sound/mpd/Makefile @@ -64,7 +64,7 @@ endef define Package/mpd-mini $(call Package/mpd/Default) TITLE+= (mini) - DEPENDS+= +libmpg123 +libvorbisidec + DEPENDS+= +libmad +libvorbisidec PROVIDES:=mpd VARIANT:=mini endef @@ -132,7 +132,7 @@ MESON_ARGS += \ -Dflac=enabled \ -Dfluidsynth=disabled \ -Dgme=disabled \ - -Dmad=disabled \ + -Dmpg123=disabled \ -Dmikmod=disabled \ -Dmodplug=disabled \ -Dmpcdec=disabled \ @@ -174,7 +174,7 @@ ifeq ($(BUILD_VARIANT),full) -Dsoundcloud=enabled \ -Did3tag=enabled \ -Dffmpeg=enabled \ - -Dmpg123=disabled \ + -Dmad=disabled \ -Dtremor=disabled \ -Dvorbis=enabled \ -Dfifo=true \ @@ -194,7 +194,7 @@ ifeq ($(BUILD_VARIANT),mini) -Dsoundcloud=disabled \ -Did3tag=disabled \ -Dffmpeg=disabled \ - -Dmpg123=enabled \ + -Dmad=enabled \ -Dtremor=enabled \ -Dvorbis=disabled \ -Dfifo=false \ -- 2.30.2