blob: 6e5fd5c09d0d46e25082d56805ac2dcf1eb4d088 [file] [log] [blame]
Per Ã…hgren398689f2018-08-23 11:38:27 +02001/*
2 * Copyright (c) 2018 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
11#ifndef MODULES_AUDIO_PROCESSING_AEC3_BLOCK_DELAY_BUFFER_H_
12#define MODULES_AUDIO_PROCESSING_AEC3_BLOCK_DELAY_BUFFER_H_
13
14#include <vector>
15
16#include "modules/audio_processing/audio_buffer.h"
17
18namespace webrtc {
19
20// Class for applying a fixed delay to the samples in a signal partitioned using
21// the audiobuffer band-splitting scheme.
22class BlockDelayBuffer {
23 public:
24 BlockDelayBuffer(size_t num_bands, size_t frame_length, size_t delay_samples);
25 ~BlockDelayBuffer();
26
27 // Delays the samples by the specified delay.
28 void DelaySignal(AudioBuffer* frame);
29
30 private:
31 const size_t frame_length_;
32 const size_t delay_;
33 std::vector<std::vector<float>> buf_;
34 size_t last_insert_ = 0;
35};
36} // namespace webrtc
37
38#endif // MODULES_AUDIO_PROCESSING_AEC3_BLOCK_DELAY_BUFFER_H_