blob: c0f7fd69bb5d5346cdbd9e3224fe439f6fbb679e [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
11#ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ4_INTERFACE_NETEQ_H_
12#define WEBRTC_MODULES_AUDIO_CODING_NETEQ4_INTERFACE_NETEQ_H_
13
pbos@webrtc.org12dc1a32013-08-05 16:22:53 +000014#include <string.h> // Provide access to size_t.
15
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000016#include <vector>
17
sprang@webrtc.orgfe5d36b2013-10-28 09:21:07 +000018#include "webrtc/common_types.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000019#include "webrtc/modules/audio_coding/neteq4/interface/audio_decoder.h"
20#include "webrtc/system_wrappers/interface/constructor_magic.h"
21#include "webrtc/typedefs.h"
22
23namespace webrtc {
24
25// Forward declarations.
26struct WebRtcRTPHeader;
27
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000028struct NetEqNetworkStatistics {
29 uint16_t current_buffer_size_ms; // Current jitter buffer size in ms.
30 uint16_t preferred_buffer_size_ms; // Target buffer size in ms.
31 uint16_t jitter_peaks_found; // 1 if adding extra delay due to peaky
32 // jitter; 0 otherwise.
33 uint16_t packet_loss_rate; // Loss rate (network + late) in Q14.
34 uint16_t packet_discard_rate; // Late loss rate in Q14.
35 uint16_t expand_rate; // Fraction (of original stream) of synthesized
36 // speech inserted through expansion (in Q14).
37 uint16_t preemptive_rate; // Fraction of data inserted through pre-emptive
38 // expansion (in Q14).
39 uint16_t accelerate_rate; // Fraction of data removed through acceleration
40 // (in Q14).
41 int32_t clockdrift_ppm; // Average clock-drift in parts-per-million
42 // (positive or negative).
43 int added_zero_samples; // Number of zero samples added in "off" mode.
44};
45
46enum NetEqOutputType {
47 kOutputNormal,
48 kOutputPLC,
49 kOutputCNG,
50 kOutputPLCtoCNG,
51 kOutputVADPassive
52};
53
54enum NetEqPlayoutMode {
55 kPlayoutOn,
56 kPlayoutOff,
57 kPlayoutFax,
58 kPlayoutStreaming
59};
60
turaj@webrtc.org036b7432013-09-11 18:45:02 +000061enum NetEqBackgroundNoiseMode {
turaj@webrtc.orgff43c852013-09-25 00:07:27 +000062 kBgnOn, // Default behavior with eternal noise.
63 kBgnFade, // Noise fades to zero after some time.
64 kBgnOff // Background noise is always zero.
turaj@webrtc.org036b7432013-09-11 18:45:02 +000065};
66
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000067// This is the interface class for NetEq.
68class NetEq {
69 public:
70 enum ReturnCodes {
71 kOK = 0,
72 kFail = -1,
73 kNotImplemented = -2
74 };
75
76 enum ErrorCodes {
77 kNoError = 0,
78 kOtherError,
79 kInvalidRtpPayloadType,
80 kUnknownRtpPayloadType,
81 kCodecNotSupported,
82 kDecoderExists,
83 kDecoderNotFound,
84 kInvalidSampleRate,
85 kInvalidPointer,
86 kAccelerateError,
87 kPreemptiveExpandError,
88 kComfortNoiseErrorCode,
89 kDecoderErrorCode,
90 kOtherDecoderError,
91 kInvalidOperation,
92 kDtmfParameterError,
93 kDtmfParsingError,
94 kDtmfInsertError,
95 kStereoNotSupported,
96 kSampleUnderrun,
97 kDecodedTooMuch,
98 kFrameSplitError,
99 kRedundancySplitError,
minyue@webrtc.org7bb54362013-08-06 05:40:57 +0000100 kPacketBufferCorruption,
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000101 kOversizePacket,
102 kSyncPacketNotAccepted
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000103 };
104
henrik.lundin@webrtc.org3ab57c52014-03-20 15:09:38 +0000105 static const int kMaxNumPacketsInBuffer = 50; // TODO(hlundin): Remove.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000106 static const int kMaxBytesInBuffer = 113280; // TODO(hlundin): Remove.
107
108 // Creates a new NetEq object, starting at the sample rate |sample_rate_hz|.
109 // (Note that it will still change the sample rate depending on what payloads
110 // are being inserted; |sample_rate_hz| is just for startup configuration.)
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000111 static NetEq* Create(int sample_rate_hz,
112 bool enable_audio_classifier = false);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000113
114 virtual ~NetEq() {}
115
116 // Inserts a new packet into NetEq. The |receive_timestamp| is an indication
117 // of the time when the packet was received, and should be measured with
118 // the same tick rate as the RTP timestamp of the current payload.
119 // Returns 0 on success, -1 on failure.
120 virtual int InsertPacket(const WebRtcRTPHeader& rtp_header,
121 const uint8_t* payload,
122 int length_bytes,
123 uint32_t receive_timestamp) = 0;
124
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000125 // Inserts a sync-packet into packet queue. Sync-packets are decoded to
126 // silence and are intended to keep AV-sync intact in an event of long packet
127 // losses when Video NACK is enabled but Audio NACK is not. Clients of NetEq
128 // might insert sync-packet when they observe that buffer level of NetEq is
129 // decreasing below a certain threshold, defined by the application.
130 // Sync-packets should have the same payload type as the last audio payload
131 // type, i.e. they cannot have DTMF or CNG payload type, nor a codec change
132 // can be implied by inserting a sync-packet.
133 // Returns kOk on success, kFail on failure.
134 virtual int InsertSyncPacket(const WebRtcRTPHeader& rtp_header,
135 uint32_t receive_timestamp) = 0;
136
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000137 // Instructs NetEq to deliver 10 ms of audio data. The data is written to
138 // |output_audio|, which can hold (at least) |max_length| elements.
139 // The number of channels that were written to the output is provided in
140 // the output variable |num_channels|, and each channel contains
141 // |samples_per_channel| elements. If more than one channel is written,
142 // the samples are interleaved.
143 // The speech type is written to |type|, if |type| is not NULL.
144 // Returns kOK on success, or kFail in case of an error.
145 virtual int GetAudio(size_t max_length, int16_t* output_audio,
146 int* samples_per_channel, int* num_channels,
147 NetEqOutputType* type) = 0;
148
149 // Associates |rtp_payload_type| with |codec| and stores the information in
150 // the codec database. Returns 0 on success, -1 on failure.
151 virtual int RegisterPayloadType(enum NetEqDecoder codec,
152 uint8_t rtp_payload_type) = 0;
153
154 // Provides an externally created decoder object |decoder| to insert in the
155 // decoder database. The decoder implements a decoder of type |codec| and
156 // associates it with |rtp_payload_type|. The decoder operates at the
157 // frequency |sample_rate_hz|. Returns kOK on success, kFail on failure.
158 virtual int RegisterExternalDecoder(AudioDecoder* decoder,
159 enum NetEqDecoder codec,
160 int sample_rate_hz,
161 uint8_t rtp_payload_type) = 0;
162
163 // Removes |rtp_payload_type| from the codec database. Returns 0 on success,
164 // -1 on failure.
165 virtual int RemovePayloadType(uint8_t rtp_payload_type) = 0;
166
turaj@webrtc.orgf1efc572013-08-16 23:44:24 +0000167 // Sets a minimum delay in millisecond for packet buffer. The minimum is
168 // maintained unless a higher latency is dictated by channel condition.
169 // Returns true if the minimum is successfully applied, otherwise false is
170 // returned.
171 virtual bool SetMinimumDelay(int delay_ms) = 0;
172
173 // Sets a maximum delay in milliseconds for packet buffer. The latency will
174 // not exceed the given value, even required delay (given the channel
175 // conditions) is higher.
176 virtual bool SetMaximumDelay(int delay_ms) = 0;
177
178 // The smallest latency required. This is computed bases on inter-arrival
179 // time and internal NetEq logic. Note that in computing this latency none of
180 // the user defined limits (applied by calling setMinimumDelay() and/or
181 // SetMaximumDelay()) are applied.
182 virtual int LeastRequiredDelayMs() const = 0;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000183
184 // Not implemented.
185 virtual int SetTargetDelay() = 0;
186
187 // Not implemented.
188 virtual int TargetDelay() = 0;
189
190 // Not implemented.
191 virtual int CurrentDelay() = 0;
192
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000193 // Sets the playout mode to |mode|.
194 virtual void SetPlayoutMode(NetEqPlayoutMode mode) = 0;
195
196 // Returns the current playout mode.
197 virtual NetEqPlayoutMode PlayoutMode() const = 0;
198
199 // Writes the current network statistics to |stats|. The statistics are reset
200 // after the call.
201 virtual int NetworkStatistics(NetEqNetworkStatistics* stats) = 0;
202
203 // Writes the last packet waiting times (in ms) to |waiting_times|. The number
204 // of values written is no more than 100, but may be smaller if the interface
205 // is polled again before 100 packets has arrived.
206 virtual void WaitingTimes(std::vector<int>* waiting_times) = 0;
207
208 // Writes the current RTCP statistics to |stats|. The statistics are reset
209 // and a new report period is started with the call.
210 virtual void GetRtcpStatistics(RtcpStatistics* stats) = 0;
211
212 // Same as RtcpStatistics(), but does not reset anything.
213 virtual void GetRtcpStatisticsNoReset(RtcpStatistics* stats) = 0;
214
215 // Enables post-decode VAD. When enabled, GetAudio() will return
216 // kOutputVADPassive when the signal contains no speech.
217 virtual void EnableVad() = 0;
218
219 // Disables post-decode VAD.
220 virtual void DisableVad() = 0;
221
222 // Returns the RTP timestamp for the last sample delivered by GetAudio().
223 virtual uint32_t PlayoutTimestamp() = 0;
224
225 // Not implemented.
226 virtual int SetTargetNumberOfChannels() = 0;
227
228 // Not implemented.
229 virtual int SetTargetSampleRate() = 0;
230
231 // Returns the error code for the last occurred error. If no error has
232 // occurred, 0 is returned.
233 virtual int LastError() = 0;
234
235 // Returns the error code last returned by a decoder (audio or comfort noise).
236 // When LastError() returns kDecoderErrorCode or kComfortNoiseErrorCode, check
237 // this method to get the decoder's error code.
238 virtual int LastDecoderError() = 0;
239
240 // Flushes both the packet buffer and the sync buffer.
241 virtual void FlushBuffers() = 0;
242
turaj@webrtc.org7df97062013-08-02 18:07:13 +0000243 // Current usage of packet-buffer and it's limits.
244 virtual void PacketBufferStatistics(int* current_num_packets,
245 int* max_num_packets,
246 int* current_memory_size_bytes,
247 int* max_memory_size_bytes) const = 0;
248
minyue@webrtc.orgd7301772013-08-29 00:58:14 +0000249 // Get sequence number and timestamp of the latest RTP.
250 // This method is to facilitate NACK.
turaj@webrtc.orgff43c852013-09-25 00:07:27 +0000251 virtual int DecodedRtpInfo(int* sequence_number,
252 uint32_t* timestamp) const = 0;
minyue@webrtc.orgd7301772013-08-29 00:58:14 +0000253
turaj@webrtc.orgff43c852013-09-25 00:07:27 +0000254 // Sets the background noise mode.
turaj@webrtc.org036b7432013-09-11 18:45:02 +0000255 virtual void SetBackgroundNoiseMode(NetEqBackgroundNoiseMode mode) = 0;
256
turaj@webrtc.orgff43c852013-09-25 00:07:27 +0000257 // Gets the background noise mode.
turaj@webrtc.org036b7432013-09-11 18:45:02 +0000258 virtual NetEqBackgroundNoiseMode BackgroundNoiseMode() const = 0;
259
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000260 protected:
261 NetEq() {}
262
263 private:
264 DISALLOW_COPY_AND_ASSIGN(NetEq);
265};
266
267} // namespace webrtc
268#endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ4_INTERFACE_NETEQ_H_