Merge beamformer

R=andrew@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/34529004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7958 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
aluebs@webrtc.org
2014-12-18 22:22:04 +00:00
parent 1090a6eccf
commit 0c39e91cc8
17 changed files with 2392 additions and 7 deletions

View File

@ -72,6 +72,10 @@ source_set("audio_processing") {
"audio_buffer.h",
"audio_processing_impl.cc",
"audio_processing_impl.h",
"beamformer/complex_matrix.h",
"beamformer/covariance_matrix_generator.cc",
"beamformer/covariance_matrix_generator.h",
"beamformer/matrix.h",
"channel_buffer.cc",
"channel_buffer.h",
"common.h",
@ -167,6 +171,13 @@ source_set("audio_processing") {
]
}
if (rtc_use_openmax_dl) {
sources += [
"beamformer/beamformer.cc",
"beamformer/beamformer.h",
]
}
if (cpu_arch == "x86" || cpu_arch == "x64") {
deps += [ ":audio_processing_sse2" ]
}