blob: 5197a8e28c11fbc1940192fb493ada031f751396 [file] [log] [blame]
Alejandro Luebsa9c0ae22015-04-14 15:51:28 -07001/*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef COMMON_AUDIO_SPARSE_FIR_FILTER_H_
12#define COMMON_AUDIO_SPARSE_FIR_FILTER_H_
Alejandro Luebsa9c0ae22015-04-14 15:51:28 -070013
14#include <cstring>
15#include <vector>
16
Steve Anton10542f22019-01-11 09:11:00 -080017#include "rtc_base/constructor_magic.h"
Alejandro Luebs5a92aa82015-04-27 11:34:45 -070018
Alejandro Luebsa9c0ae22015-04-14 15:51:28 -070019namespace webrtc {
20
21// A Finite Impulse Response filter implementation which takes advantage of a
22// sparse structure with uniformly distributed non-zero coefficients.
Alejandro Luebs5a92aa82015-04-27 11:34:45 -070023class SparseFIRFilter final {
Alejandro Luebsa9c0ae22015-04-14 15:51:28 -070024 public:
25 // |num_nonzero_coeffs| is the number of non-zero coefficients,
26 // |nonzero_coeffs|. They are assumed to be uniformly distributed every
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
29 // offset = 1 the filter coefficients will be:
30 // B = [0 coeffs[0] 0 0 coeffs[1] 0 0 coeffs[2] ... ]
31 // All initial state values will be zeros.
32 SparseFIRFilter(const float* nonzero_coeffs,
Peter Kastingdce40cf2015-08-24 14:52:23 -070033 size_t num_nonzero_coeffs,
34 size_t sparsity,
35 size_t offset);
kwiberg9e102112016-08-29 13:43:01 -070036 ~SparseFIRFilter();
Alejandro Luebsa9c0ae22015-04-14 15:51:28 -070037
38 // Filters the |in| data supplied.
39 // |out| must be previously allocated and it must be at least of |length|.
Peter Kastingdce40cf2015-08-24 14:52:23 -070040 void Filter(const float* in, size_t length, float* out);
Alejandro Luebsa9c0ae22015-04-14 15:51:28 -070041
42 private:
Peter Kastingdce40cf2015-08-24 14:52:23 -070043 const size_t sparsity_;
44 const size_t offset_;
Alejandro Luebsa9c0ae22015-04-14 15:51:28 -070045 const std::vector<float> nonzero_coeffs_;
46 std::vector<float> state_;
Alejandro Luebs5a92aa82015-04-27 11:34:45 -070047
henrikg3c089d72015-09-16 05:37:44 -070048 RTC_DISALLOW_COPY_AND_ASSIGN(SparseFIRFilter);
Alejandro Luebsa9c0ae22015-04-14 15:51:28 -070049};
50
51} // namespace webrtc
52
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020053#endif // COMMON_AUDIO_SPARSE_FIR_FILTER_H_