Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 80f8cd79 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "audio: audio encoder/decoder enhancement"

parents f5998333 486032d2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ include $(MY_LOCAL_PATH)/legacy/Android.mk
else
include $(MY_LOCAL_PATH)/hal/Android.mk
include $(MY_LOCAL_PATH)/voice_processing/Android.mk
include $(MY_LOCAL_PATH)/mm-audio/Android.mk
endif

endif

mm-audio/Android.mk

0 → 100644
+1 −0
Original line number Diff line number Diff line
include $(call all-subdir-makefiles)

mm-audio/Makefile

0 → 100644
+10 −0
Original line number Diff line number Diff line
all:
	@echo "invoking omxaudio make"
	$(MAKE) -C adec-mp3
	$(MAKE) -C adec-aac
	$(MAKE) -C aenc-aac

install:
	$(MAKE) -C adec-mp3 install
	$(MAKE) -C adec-aac install
	$(MAKE) -C aenc-aac install

mm-audio/Makefile.am

0 → 100644
+5 −0
Original line number Diff line number Diff line
# Makefile.am - Automake script for mm-omxaudio
#
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = adec-aac adec-mp3 aenc-aac
+1 −0
Original line number Diff line number Diff line
include $(call all-subdir-makefiles)
Loading