OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nonzero_coeffs_
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/common_audio/
sparse_fir_filter.cc
23
nonzero_coeffs_
(nonzero_coeffs, nonzero_coeffs + num_nonzero_coeffs),
30
// Convolves the input signal |in| with the filter kernel |
nonzero_coeffs_
|
36
j <
nonzero_coeffs_
.size(); ++j) {
37
out[i] += in[i - j * sparsity_ - offset_] *
nonzero_coeffs_
[j];
39
for (; j <
nonzero_coeffs_
.size(); ++j) {
40
out[i] += state_[i + (
nonzero_coeffs_
.size() - j - 1) * sparsity_] *
41
nonzero_coeffs_
[j];
sparse_fir_filter.h
44
const std::vector<float>
nonzero_coeffs_
;
member in class:webrtc::final
Completed in 452 milliseconds