blob: 7d24730cb35370558e3f91b025c6e65fb41590e8 [file] [log] [blame]
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001/*
2 * Copyright (c) 2012 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 MODULES_AUDIO_CODING_NETEQ_SYNC_BUFFER_H_
12#define MODULES_AUDIO_CODING_NETEQ_SYNC_BUFFER_H_
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000013
Yves Gerey988cc082018-10-23 12:03:01 +020014#include <stddef.h>
15#include <stdint.h>
Jonas Olssona4d87372019-07-05 19:08:33 +020016
Yves Gerey988cc082018-10-23 12:03:01 +020017#include <vector>
18
Fredrik Solenbergbbf21a32018-04-12 22:44:09 +020019#include "api/audio/audio_frame.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020020#include "modules/audio_coding/neteq/audio_multi_vector.h"
Yves Gerey988cc082018-10-23 12:03:01 +020021#include "modules/audio_coding/neteq/audio_vector.h"
Henrik Lundin00eb12a2018-09-05 18:14:52 +020022#include "rtc_base/buffer.h"
Steve Anton10542f22019-01-11 09:11:00 -080023#include "rtc_base/constructor_magic.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000024
25namespace webrtc {
26
henrik.lundin@webrtc.orgfd11bbf2013-09-30 20:38:44 +000027class SyncBuffer : public AudioMultiVector {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000028 public:
29 SyncBuffer(size_t channels, size_t length)
henrik.lundin@webrtc.orgfd11bbf2013-09-30 20:38:44 +000030 : AudioMultiVector(channels, length),
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000031 next_index_(length),
32 end_timestamp_(0),
33 dtmf_index_(0) {}
34
henrik.lundin114c1b32017-04-26 07:47:32 -070035 // Returns the number of samples yet to play out from the buffer.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000036 size_t FutureLength() const;
37
Artem Titovd00ce742021-07-28 20:00:17 +020038 // Adds the contents of `append_this` to the back of the SyncBuffer. Removes
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000039 // the same number of samples from the beginning of the SyncBuffer, to
Artem Titovd00ce742021-07-28 20:00:17 +020040 // maintain a constant buffer size. The `next_index_` is updated to reflect
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000041 // the move of the beginning of "future" data.
Karl Wiberg7f6c4d42015-04-09 15:44:22 +020042 void PushBack(const AudioMultiVector& append_this) override;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000043
Henrik Lundin00eb12a2018-09-05 18:14:52 +020044 // Like PushBack, but reads the samples channel-interleaved from the input.
45 void PushBackInterleaved(const rtc::BufferT<int16_t>& append_this);
46
Artem Titovd00ce742021-07-28 20:00:17 +020047 // Adds `length` zeros to the beginning of each channel. Removes
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000048 // the same number of samples from the end of the SyncBuffer, to
Artem Titovd00ce742021-07-28 20:00:17 +020049 // maintain a constant buffer size. The `next_index_` is updated to reflect
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000050 // the move of the beginning of "future" data.
51 // Note that this operation may delete future samples that are waiting to
52 // be played.
53 void PushFrontZeros(size_t length);
54
Artem Titovd00ce742021-07-28 20:00:17 +020055 // Inserts `length` zeros into each channel at index `position`. The size of
56 // the SyncBuffer is kept constant, which means that the last `length`
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000057 // elements in each channel will be purged.
58 virtual void InsertZerosAtIndex(size_t length, size_t position);
59
60 // Overwrites each channel in this SyncBuffer with values taken from
Artem Titovd00ce742021-07-28 20:00:17 +020061 // `insert_this`. The values are taken from the beginning of `insert_this` and
62 // are inserted starting at `position`. `length` values are written into each
63 // channel. The size of the SyncBuffer is kept constant. That is, if `length`
64 // and `position` are selected such that the new data would extend beyond the
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000065 // end of the current SyncBuffer, the buffer is not extended.
Artem Titovd00ce742021-07-28 20:00:17 +020066 // The `next_index_` is not updated.
henrik.lundin@webrtc.orgfd11bbf2013-09-30 20:38:44 +000067 virtual void ReplaceAtIndex(const AudioMultiVector& insert_this,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000068 size_t length,
69 size_t position);
70
Artem Titovd00ce742021-07-28 20:00:17 +020071 // Same as the above method, but where all of `insert_this` is written (with
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000072 // the same constraints as above, that the SyncBuffer is not extended).
henrik.lundin@webrtc.orgfd11bbf2013-09-30 20:38:44 +000073 virtual void ReplaceAtIndex(const AudioMultiVector& insert_this,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000074 size_t position);
75
Artem Titovd00ce742021-07-28 20:00:17 +020076 // Reads `requested_len` samples from each channel and writes them interleaved
77 // into `output`. The `next_index_` is updated to point to the sample to read
78 // next time. The AudioFrame `output` is first reset, and the `data_`,
79 // `num_channels_`, and `samples_per_channel_` fields are updated.
henrik.lundin6d8e0112016-03-04 10:34:21 -080080 void GetNextAudioInterleaved(size_t requested_len, AudioFrame* output);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000081
Artem Titovd00ce742021-07-28 20:00:17 +020082 // Adds `increment` to `end_timestamp_`.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000083 void IncreaseEndTimestamp(uint32_t increment);
84
85 // Flushes the buffer. The buffer will contain only zeros after the flush, and
Artem Titovd00ce742021-07-28 20:00:17 +020086 // `next_index_` will point to the end, like when the buffer was first
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000087 // created.
88 void Flush();
89
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +000090 const AudioVector& Channel(size_t n) const { return *channels_[n]; }
91 AudioVector& Channel(size_t n) { return *channels_[n]; }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000092
93 // Accessors and mutators.
94 size_t next_index() const { return next_index_; }
95 void set_next_index(size_t value);
96 uint32_t end_timestamp() const { return end_timestamp_; }
97 void set_end_timestamp(uint32_t value) { end_timestamp_ = value; }
98 size_t dtmf_index() const { return dtmf_index_; }
99 void set_dtmf_index(size_t value);
100
101 private:
102 size_t next_index_;
103 uint32_t end_timestamp_; // The timestamp of the last sample in the buffer.
Yves Gerey665174f2018-06-19 15:03:05 +0200104 size_t dtmf_index_; // Index to the first non-DTMF sample in the buffer.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000105
henrikg3c089d72015-09-16 05:37:44 -0700106 RTC_DISALLOW_COPY_AND_ASSIGN(SyncBuffer);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000107};
108
109} // namespace webrtc
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200110#endif // MODULES_AUDIO_CODING_NETEQ_SYNC_BUFFER_H_