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

Commit d7d4b6ad authored by Phil Burk's avatar Phil Burk Committed by android-build-merger
Browse files

Merge "aaudio: fix output bugs and improve input performance, add loopback test" into oc-dev

am: 54cf3222

Change-Id: I0dd51a64d2d673fef59720b69d96757c5f231354
parents 62633b66 54cf3222
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
include $(call all-subdir-makefiles)
+13 −0
Original line number Diff line number Diff line
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := tests
LOCAL_C_INCLUDES := \
    $(call include-path-for, audio-utils) \
    frameworks/av/media/libaaudio/include

# NDK recommends using this kind of relative path instead of an absolute path.
LOCAL_SRC_FILES:= ../src/loopback.cpp
LOCAL_SHARED_LIBRARIES := libaaudio
LOCAL_MODULE := aaudio_loopback
include $(BUILD_EXECUTABLE)
+1 −0
Original line number Diff line number Diff line
APP_CPPFLAGS += -std=c++11
+528 −0

File added.

Preview size limit exceeded, changes collapsed.

+0 −2
Original line number Diff line number Diff line
# TODO remove then when we support other architectures
APP_ABI := arm64-v8a
APP_CPPFLAGS += -std=c++11
Loading