blob: 65a4a65bdaf3d5f38024d5fba6cf1b2ebd7e796e [file] [log] [blame]
# Copyright 2023 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
load("//:defs.bzl", "COPTS")
package(
default_visibility = ["//:__subpackages__"],
)
cc_library(
name = "audio_frame_operations",
srcs = [
"audio_frame_operations.cc",
"channel_mixer.cc",
"channel_mixing_matrix.cc",
],
hdrs = [
"audio_frame_operations.h",
"channel_mixer.h",
"channel_mixing_matrix.h",
],
copts = COPTS,
deps = [
"//api/audio:audio_frame_api",
"//common_audio",
"//rtc_base:checks",
"//rtc_base:logging",
"//rtc_base:safe_conversions",
"//system_wrappers:field_trial",
"@com_google_absl//absl/base:core_headers",
],
)