blob: 89051275e4527ff56685dabd5c9e73f03d0aa7ce [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
68// This is the interface class for NetEq.
69class NetEq {
70 public:
71 enum ReturnCodes {
72 kOK = 0,
73 kFail = -1,
74 kNotImplemented = -2
75 };
76
77 enum ErrorCodes {
78 kNoError = 0,
79 kOtherError,
80 kInvalidRtpPayloadType,
81 kUnknownRtpPayloadType,
82 kCodecNotSupported,
83 kDecoderExists,
84 kDecoderNotFound,
85 kInvalidSampleRate,
86 kInvalidPointer,
87 kAccelerateError,
88 kPreemptiveExpandError,
89 kComfortNoiseErrorCode,
90 kDecoderErrorCode,
91 kOtherDecoderError,
92 kInvalidOperation,
93 kDtmfParameterError,
94 kDtmfParsingError,
95 kDtmfInsertError,
96 kStereoNotSupported,
97 kSampleUnderrun,
98 kDecodedTooMuch,
99 kFrameSplitError,
100 kRedundancySplitError,
101 kPacketBufferCorruption
102 };
103
104 static const int kMaxNumPacketsInBuffer = 240; // TODO(hlundin): Remove.
105 static const int kMaxBytesInBuffer = 113280; // TODO(hlundin): Remove.
106
107 // Creates a new NetEq object, starting at the sample rate |sample_rate_hz|.
108 // (Note that it will still change the sample rate depending on what payloads
109 // are being inserted; |sample_rate_hz| is just for startup configuration.)
110 static NetEq* Create(int sample_rate_hz);
111
112 virtual ~NetEq() {}
113
114 // Inserts a new packet into NetEq. The |receive_timestamp| is an indication
115 // of the time when the packet was received, and should be measured with
116 // the same tick rate as the RTP timestamp of the current payload.
117 // Returns 0 on success, -1 on failure.
118 virtual int InsertPacket(const WebRtcRTPHeader& rtp_header,
119 const uint8_t* payload,
120 int length_bytes,
121 uint32_t receive_timestamp) = 0;
122
123 // Instructs NetEq to deliver 10 ms of audio data. The data is written to
124 // |output_audio|, which can hold (at least) |max_length| elements.
125 // The number of channels that were written to the output is provided in
126 // the output variable |num_channels|, and each channel contains
127 // |samples_per_channel| elements. If more than one channel is written,
128 // the samples are interleaved.
129 // The speech type is written to |type|, if |type| is not NULL.
130 // Returns kOK on success, or kFail in case of an error.
131 virtual int GetAudio(size_t max_length, int16_t* output_audio,
132 int* samples_per_channel, int* num_channels,
133 NetEqOutputType* type) = 0;
134
135 // Associates |rtp_payload_type| with |codec| and stores the information in
136 // the codec database. Returns 0 on success, -1 on failure.
137 virtual int RegisterPayloadType(enum NetEqDecoder codec,
138 uint8_t rtp_payload_type) = 0;
139
140 // Provides an externally created decoder object |decoder| to insert in the
141 // decoder database. The decoder implements a decoder of type |codec| and
142 // associates it with |rtp_payload_type|. The decoder operates at the
143 // frequency |sample_rate_hz|. Returns kOK on success, kFail on failure.
144 virtual int RegisterExternalDecoder(AudioDecoder* decoder,
145 enum NetEqDecoder codec,
146 int sample_rate_hz,
147 uint8_t rtp_payload_type) = 0;
148
149 // Removes |rtp_payload_type| from the codec database. Returns 0 on success,
150 // -1 on failure.
151 virtual int RemovePayloadType(uint8_t rtp_payload_type) = 0;
152
153 // Sets the desired extra delay on top of what NetEq already applies due to
154 // current network situation. Used for synchronization with video. Returns
155 // true if successful, otherwise false.
156 virtual bool SetExtraDelay(int extra_delay_ms) = 0;
157
158 // Not implemented.
159 virtual int SetTargetDelay() = 0;
160
161 // Not implemented.
162 virtual int TargetDelay() = 0;
163
164 // Not implemented.
165 virtual int CurrentDelay() = 0;
166
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000167 // Sets the playout mode to |mode|.
168 virtual void SetPlayoutMode(NetEqPlayoutMode mode) = 0;
169
170 // Returns the current playout mode.
171 virtual NetEqPlayoutMode PlayoutMode() const = 0;
172
173 // Writes the current network statistics to |stats|. The statistics are reset
174 // after the call.
175 virtual int NetworkStatistics(NetEqNetworkStatistics* stats) = 0;
176
177 // Writes the last packet waiting times (in ms) to |waiting_times|. The number
178 // of values written is no more than 100, but may be smaller if the interface
179 // is polled again before 100 packets has arrived.
180 virtual void WaitingTimes(std::vector<int>* waiting_times) = 0;
181
182 // Writes the current RTCP statistics to |stats|. The statistics are reset
183 // and a new report period is started with the call.
184 virtual void GetRtcpStatistics(RtcpStatistics* stats) = 0;
185
186 // Same as RtcpStatistics(), but does not reset anything.
187 virtual void GetRtcpStatisticsNoReset(RtcpStatistics* stats) = 0;
188
189 // Enables post-decode VAD. When enabled, GetAudio() will return
190 // kOutputVADPassive when the signal contains no speech.
191 virtual void EnableVad() = 0;
192
193 // Disables post-decode VAD.
194 virtual void DisableVad() = 0;
195
196 // Returns the RTP timestamp for the last sample delivered by GetAudio().
197 virtual uint32_t PlayoutTimestamp() = 0;
198
199 // Not implemented.
200 virtual int SetTargetNumberOfChannels() = 0;
201
202 // Not implemented.
203 virtual int SetTargetSampleRate() = 0;
204
205 // Returns the error code for the last occurred error. If no error has
206 // occurred, 0 is returned.
207 virtual int LastError() = 0;
208
209 // Returns the error code last returned by a decoder (audio or comfort noise).
210 // When LastError() returns kDecoderErrorCode or kComfortNoiseErrorCode, check
211 // this method to get the decoder's error code.
212 virtual int LastDecoderError() = 0;
213
214 // Flushes both the packet buffer and the sync buffer.
215 virtual void FlushBuffers() = 0;
216
turaj@webrtc.org7df97062013-08-02 18:07:13 +0000217 // Current usage of packet-buffer and it's limits.
218 virtual void PacketBufferStatistics(int* current_num_packets,
219 int* max_num_packets,
220 int* current_memory_size_bytes,
221 int* max_memory_size_bytes) const = 0;
222
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000223 protected:
224 NetEq() {}
225
226 private:
227 DISALLOW_COPY_AND_ASSIGN(NetEq);
228};
229
230} // namespace webrtc
231#endif // WEBRTC_MODULES_AUDIO_CODING_NETEQ4_INTERFACE_NETEQ_H_