Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1068)

Side by Side Diff: webrtc/common_audio/sparse_fir_filter.h

Issue 2288133002: Fix Chromium clang plugin warnings (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/common_audio/sparse_fir_filter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 15 matching lines...) Expand all
26 // |nonzero_coeffs|. They are assumed to be uniformly distributed every 26 // |nonzero_coeffs|. They are assumed to be uniformly distributed every
27 // |sparsity| samples and with an initial |offset|. The rest of the filter 27 // |sparsity| samples and with an initial |offset|. The rest of the filter
28 // coefficients will be assumed zeros. For example, with sparsity = 3, and 28 // coefficients will be assumed zeros. For example, with sparsity = 3, and
29 // offset = 1 the filter coefficients will be: 29 // offset = 1 the filter coefficients will be:
30 // B = [0 coeffs[0] 0 0 coeffs[1] 0 0 coeffs[2] ... ] 30 // B = [0 coeffs[0] 0 0 coeffs[1] 0 0 coeffs[2] ... ]
31 // All initial state values will be zeros. 31 // All initial state values will be zeros.
32 SparseFIRFilter(const float* nonzero_coeffs, 32 SparseFIRFilter(const float* nonzero_coeffs,
33 size_t num_nonzero_coeffs, 33 size_t num_nonzero_coeffs,
34 size_t sparsity, 34 size_t sparsity,
35 size_t offset); 35 size_t offset);
36 ~SparseFIRFilter();
36 37
37 // Filters the |in| data supplied. 38 // Filters the |in| data supplied.
38 // |out| must be previously allocated and it must be at least of |length|. 39 // |out| must be previously allocated and it must be at least of |length|.
39 void Filter(const float* in, size_t length, float* out); 40 void Filter(const float* in, size_t length, float* out);
40 41
41 private: 42 private:
42 const size_t sparsity_; 43 const size_t sparsity_;
43 const size_t offset_; 44 const size_t offset_;
44 const std::vector<float> nonzero_coeffs_; 45 const std::vector<float> nonzero_coeffs_;
45 std::vector<float> state_; 46 std::vector<float> state_;
46 47
47 RTC_DISALLOW_COPY_AND_ASSIGN(SparseFIRFilter); 48 RTC_DISALLOW_COPY_AND_ASSIGN(SparseFIRFilter);
48 }; 49 };
49 50
50 } // namespace webrtc 51 } // namespace webrtc
51 52
52 #endif // WEBRTC_COMMON_AUDIO_SPARSE_FIR_FILTER_H_ 53 #endif // WEBRTC_COMMON_AUDIO_SPARSE_FIR_FILTER_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/common_audio/sparse_fir_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698