hdmi audio: add new audio HAL module with alsa instead of tinyalsa

This commit is contained in:
nename0
2023-03-03 22:43:09 +01:00
committed by Konsta
parent f724b0f13a
commit 2960d80f8d
3 changed files with 791 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Android Open Source Project
// Copyright (C) 2021-2022 KonstaKANG
// Copyright (C) 2021-2023 KonstaKANG
//
// SPDX-License-Identifier: Apache-2.0
@@ -22,3 +22,22 @@ cc_library_shared {
],
cflags: ["-Wno-unused-parameter"],
}
cc_library_shared {
name: "audio.primary.rpi_hdmi",
relative_install_path: "hw",
proprietary: true,
srcs: ["audio_hw_hdmi.c"],
include_dirs: [
"external/expat/lib",
"system/media/audio_effects/include",
"system/media/audio_utils/include",
],
header_libs: ["libhardware_headers"],
shared_libs: [
"libcutils",
"liblog",
"libasound",
],
cflags: ["-Wno-unused-parameter"],
}