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