Move audioproc_f to rtc_tools.
The motivation in https://webrtc-review.googlesource.com/c/src/+/32340/3 applies here as well. We would like to use this tool downstream. Bug: None Change-Id: Id5b23f792679ab9c07294bfb8e53119c423044b1 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/161681 Commit-Queue: Daniel Johansson <dajo@webrtc.org> Reviewed-by: Daniel Johansson <dajo@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Per Åhgren <peah@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30051}
This commit is contained in:

committed by
Commit Bot

parent
ded86c1ad8
commit
89aaedac12
@ -368,7 +368,6 @@ if (rtc_include_tests) {
|
|||||||
|
|
||||||
if (rtc_enable_protobuf) {
|
if (rtc_enable_protobuf) {
|
||||||
deps += [
|
deps += [
|
||||||
":audioproc_f",
|
|
||||||
":audioproc_unittest_proto",
|
":audioproc_unittest_proto",
|
||||||
"aec_dump:aec_dump_unittests",
|
"aec_dump:aec_dump_unittests",
|
||||||
"test/conversational_speech",
|
"test/conversational_speech",
|
||||||
@ -604,18 +603,6 @@ if (rtc_include_tests) {
|
|||||||
"//third_party/abseil-cpp/absl/types:optional",
|
"//third_party/abseil-cpp/absl/types:optional",
|
||||||
]
|
]
|
||||||
} # audioproc_f_impl
|
} # audioproc_f_impl
|
||||||
rtc_executable("audioproc_f") {
|
|
||||||
testonly = true
|
|
||||||
sources = [
|
|
||||||
"test/audioproc_float_main.cc",
|
|
||||||
]
|
|
||||||
deps = [
|
|
||||||
":api",
|
|
||||||
":audio_processing",
|
|
||||||
"../../api:audioproc_f_api",
|
|
||||||
"../../rtc_base:rtc_base_approved",
|
|
||||||
]
|
|
||||||
} # audioproc_f
|
|
||||||
}
|
}
|
||||||
|
|
||||||
rtc_library("audioproc_test_utils") {
|
rtc_library("audioproc_test_utils") {
|
||||||
|
@ -34,8 +34,8 @@ copy("scripts") {
|
|||||||
":apm_configs",
|
":apm_configs",
|
||||||
":lib",
|
":lib",
|
||||||
":output",
|
":output",
|
||||||
"../..:audioproc_f",
|
|
||||||
"../../../../resources/audio_processing/test/py_quality_assessment:probing_signals",
|
"../../../../resources/audio_processing/test/py_quality_assessment:probing_signals",
|
||||||
|
"../../../../rtc_tools:audioproc_f",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,6 +36,7 @@ group("rtc_tools") {
|
|||||||
deps += [ ":event_log_visualizer" ]
|
deps += [ ":event_log_visualizer" ]
|
||||||
}
|
}
|
||||||
deps += [
|
deps += [
|
||||||
|
":audioproc_f",
|
||||||
":rtp_analyzer",
|
":rtp_analyzer",
|
||||||
":unpack_aecdump",
|
":unpack_aecdump",
|
||||||
"network_tester",
|
"network_tester",
|
||||||
@ -413,6 +414,19 @@ if (rtc_include_tests) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (rtc_enable_protobuf) {
|
if (rtc_enable_protobuf) {
|
||||||
|
rtc_executable("audioproc_f") {
|
||||||
|
testonly = true
|
||||||
|
sources = [
|
||||||
|
"audioproc_f/audioproc_float_main.cc",
|
||||||
|
]
|
||||||
|
deps = [
|
||||||
|
"../api:audioproc_f_api",
|
||||||
|
"../modules/audio_processing",
|
||||||
|
"../modules/audio_processing:api",
|
||||||
|
"../rtc_base:rtc_base_approved",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
copy("rtp_analyzer") {
|
copy("rtp_analyzer") {
|
||||||
sources = [
|
sources = [
|
||||||
"py_event_log_analyzer/misc.py",
|
"py_event_log_analyzer/misc.py",
|
||||||
|
Reference in New Issue
Block a user