2017-06-28 02:05:04 -07:00
|
|
|
# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
#
|
|
|
|
|
# Use of this source code is governed by a BSD-style license
|
|
|
|
|
# that can be found in the LICENSE file in the root of the source
|
|
|
|
|
# tree. An additional intellectual property rights grant can be found
|
|
|
|
|
# in the file PATENTS. All contributing project authors may
|
|
|
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
|
|
|
|
|
import("../../../webrtc.gni")
|
|
|
|
|
if (is_android) {
|
|
|
|
|
import("//build/config/android/config.gni")
|
|
|
|
|
import("//build/config/android/rules.gni")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rtc_source_set("audio_encoder_ilbc_config") {
|
2018-01-10 15:54:53 +00:00
|
|
|
visibility = [ "*" ]
|
2020-01-21 12:10:10 +01:00
|
|
|
sources = [ "audio_encoder_ilbc_config.h" ]
|
2017-06-28 02:05:04 -07:00
|
|
|
}
|
|
|
|
|
|
2019-10-17 21:32:04 +02:00
|
|
|
rtc_library("audio_encoder_ilbc") {
|
2018-01-10 15:54:53 +00:00
|
|
|
visibility = [ "*" ]
|
2018-04-22 19:55:00 +02:00
|
|
|
poisonous = [ "audio_codecs" ]
|
2017-06-28 02:05:04 -07:00
|
|
|
sources = [
|
|
|
|
|
"audio_encoder_ilbc.cc",
|
|
|
|
|
"audio_encoder_ilbc.h",
|
|
|
|
|
]
|
|
|
|
|
deps = [
|
|
|
|
|
":audio_encoder_ilbc_config",
|
|
|
|
|
"..:audio_codecs_api",
|
2022-03-29 11:04:48 +02:00
|
|
|
"../../../api:field_trials_view",
|
2017-06-28 02:05:04 -07:00
|
|
|
"../../../modules/audio_coding:ilbc",
|
2022-04-04 17:04:37 +02:00
|
|
|
"../../../rtc_base:safe_conversions",
|
2018-03-07 14:18:56 +01:00
|
|
|
"../../../rtc_base:safe_minmax",
|
2022-04-04 17:14:02 +02:00
|
|
|
"../../../rtc_base:stringutils",
|
2020-06-05 14:30:41 +02:00
|
|
|
]
|
|
|
|
|
absl_deps = [
|
2018-10-22 09:48:08 +02:00
|
|
|
"//third_party/abseil-cpp/absl/strings",
|
2018-06-21 13:32:56 +02:00
|
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
2017-06-28 02:05:04 -07:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 21:32:04 +02:00
|
|
|
rtc_library("audio_decoder_ilbc") {
|
2018-01-10 15:54:53 +00:00
|
|
|
visibility = [ "*" ]
|
2018-04-22 19:55:00 +02:00
|
|
|
poisonous = [ "audio_codecs" ]
|
2017-06-28 02:05:04 -07:00
|
|
|
sources = [
|
|
|
|
|
"audio_decoder_ilbc.cc",
|
|
|
|
|
"audio_decoder_ilbc.h",
|
|
|
|
|
]
|
|
|
|
|
deps = [
|
|
|
|
|
"..:audio_codecs_api",
|
2022-03-29 11:04:48 +02:00
|
|
|
"../../../api:field_trials_view",
|
2017-06-28 02:05:04 -07:00
|
|
|
"../../../modules/audio_coding:ilbc",
|
2020-06-05 14:30:41 +02:00
|
|
|
]
|
|
|
|
|
absl_deps = [
|
2018-10-22 09:48:08 +02:00
|
|
|
"//third_party/abseil-cpp/absl/strings",
|
2018-06-21 13:32:56 +02:00
|
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
2017-06-28 02:05:04 -07:00
|
|
|
]
|
|
|
|
|
}
|