blob: 87d12f51f1502263bc0750268060ac69bf014f61 [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
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000011#include "webrtc/modules/audio_coding/neteq/neteq_impl.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000012
13#include <assert.h>
14#include <memory.h> // memset
15
16#include <algorithm>
ossu97ba30e2016-04-25 07:55:58 -070017#include <vector>
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000018
henrik.lundin9c3efd02015-08-27 13:12:22 -070019#include "webrtc/base/checks.h"
Henrik Lundind67a2192015-08-03 12:54:37 +020020#include "webrtc/base/logging.h"
Tommid44c0772016-03-11 17:12:32 -080021#include "webrtc/base/safe_conversions.h"
henrik.lundina689b442015-12-17 03:50:05 -080022#include "webrtc/base/trace_event.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000023#include "webrtc/common_audio/signal_processing/include/signal_processing_library.h"
kwiberg@webrtc.orge04a93b2014-12-09 10:12:53 +000024#include "webrtc/modules/audio_coding/codecs/audio_decoder.h"
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000025#include "webrtc/modules/audio_coding/neteq/accelerate.h"
26#include "webrtc/modules/audio_coding/neteq/background_noise.h"
27#include "webrtc/modules/audio_coding/neteq/buffer_level_filter.h"
28#include "webrtc/modules/audio_coding/neteq/comfort_noise.h"
29#include "webrtc/modules/audio_coding/neteq/decision_logic.h"
30#include "webrtc/modules/audio_coding/neteq/decoder_database.h"
31#include "webrtc/modules/audio_coding/neteq/defines.h"
32#include "webrtc/modules/audio_coding/neteq/delay_manager.h"
33#include "webrtc/modules/audio_coding/neteq/delay_peak_detector.h"
34#include "webrtc/modules/audio_coding/neteq/dtmf_buffer.h"
35#include "webrtc/modules/audio_coding/neteq/dtmf_tone_generator.h"
36#include "webrtc/modules/audio_coding/neteq/expand.h"
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000037#include "webrtc/modules/audio_coding/neteq/merge.h"
henrik.lundin48ed9302015-10-29 05:36:24 -070038#include "webrtc/modules/audio_coding/neteq/nack.h"
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000039#include "webrtc/modules/audio_coding/neteq/normal.h"
40#include "webrtc/modules/audio_coding/neteq/packet_buffer.h"
41#include "webrtc/modules/audio_coding/neteq/packet.h"
42#include "webrtc/modules/audio_coding/neteq/payload_splitter.h"
43#include "webrtc/modules/audio_coding/neteq/post_decode_vad.h"
44#include "webrtc/modules/audio_coding/neteq/preemptive_expand.h"
45#include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
henrik.lundined497212016-04-25 10:11:38 -070046#include "webrtc/modules/audio_coding/neteq/tick_timer.h"
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000047#include "webrtc/modules/audio_coding/neteq/timestamp_scaler.h"
Henrik Kjellanderff761fb2015-11-04 08:31:52 +010048#include "webrtc/modules/include/module_common_types.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000049
50// Modify the code to obtain backwards bit-exactness. Once bit-exactness is no
51// longer required, this #define should be removed (and the code that it
52// enables).
53#define LEGACY_BITEXACT
54
55namespace webrtc {
56
ossue3525782016-05-25 07:37:43 -070057NetEqImpl::Dependencies::Dependencies(
58 const NetEq::Config& config,
59 const rtc::scoped_refptr<AudioDecoderFactory>& decoder_factory)
henrik.lundin1d9061e2016-04-26 12:19:34 -070060 : tick_timer(new TickTimer),
61 buffer_level_filter(new BufferLevelFilter),
ossue3525782016-05-25 07:37:43 -070062 decoder_database(new DecoderDatabase(decoder_factory)),
henrik.lundinf3933702016-04-28 01:53:52 -070063 delay_peak_detector(new DelayPeakDetector(tick_timer.get())),
henrik.lundin1d9061e2016-04-26 12:19:34 -070064 delay_manager(new DelayManager(config.max_packets_in_buffer,
henrik.lundin8f8c96d2016-04-28 23:19:20 -070065 delay_peak_detector.get(),
66 tick_timer.get())),
henrik.lundin1d9061e2016-04-26 12:19:34 -070067 dtmf_buffer(new DtmfBuffer(config.sample_rate_hz)),
68 dtmf_tone_generator(new DtmfToneGenerator),
69 packet_buffer(
70 new PacketBuffer(config.max_packets_in_buffer, tick_timer.get())),
71 payload_splitter(new PayloadSplitter),
72 timestamp_scaler(new TimestampScaler(*decoder_database)),
73 accelerate_factory(new AccelerateFactory),
74 expand_factory(new ExpandFactory),
75 preemptive_expand_factory(new PreemptiveExpandFactory) {}
76
77NetEqImpl::Dependencies::~Dependencies() = default;
78
henrik.lundin@webrtc.orgea257842014-08-07 12:27:37 +000079NetEqImpl::NetEqImpl(const NetEq::Config& config,
henrik.lundin1d9061e2016-04-26 12:19:34 -070080 Dependencies&& deps,
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +000081 bool create_components)
henrik.lundin1d9061e2016-04-26 12:19:34 -070082 : tick_timer_(std::move(deps.tick_timer)),
83 buffer_level_filter_(std::move(deps.buffer_level_filter)),
84 decoder_database_(std::move(deps.decoder_database)),
85 delay_manager_(std::move(deps.delay_manager)),
86 delay_peak_detector_(std::move(deps.delay_peak_detector)),
87 dtmf_buffer_(std::move(deps.dtmf_buffer)),
88 dtmf_tone_generator_(std::move(deps.dtmf_tone_generator)),
89 packet_buffer_(std::move(deps.packet_buffer)),
90 payload_splitter_(std::move(deps.payload_splitter)),
91 timestamp_scaler_(std::move(deps.timestamp_scaler)),
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000092 vad_(new PostDecodeVad()),
henrik.lundin1d9061e2016-04-26 12:19:34 -070093 expand_factory_(std::move(deps.expand_factory)),
94 accelerate_factory_(std::move(deps.accelerate_factory)),
95 preemptive_expand_factory_(std::move(deps.preemptive_expand_factory)),
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000096 last_mode_(kModeNormal),
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000097 decoded_buffer_length_(kMaxFrameSize),
98 decoded_buffer_(new int16_t[decoded_buffer_length_]),
99 playout_timestamp_(0),
100 new_codec_(false),
101 timestamp_(0),
102 reset_decoder_(false),
henrik.lundin48ed9302015-10-29 05:36:24 -0700103 current_rtp_payload_type_(0xFF), // Invalid RTP payload type.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000104 current_cng_rtp_payload_type_(0xFF), // Invalid RTP payload type.
105 ssrc_(0),
106 first_packet_(true),
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000107 error_code_(0),
108 decoder_error_code_(0),
henrik.lundin@webrtc.orgea257842014-08-07 12:27:37 +0000109 background_noise_mode_(config.background_noise_mode),
henrik.lundin@webrtc.org7cbc4f92014-10-07 06:37:39 +0000110 playout_mode_(config.playout_mode),
Henrik Lundincf808d22015-05-27 14:33:29 +0200111 enable_fast_accelerate_(config.enable_fast_accelerate),
henrik.lundin7a926812016-05-12 13:51:28 -0700112 nack_enabled_(false),
113 enable_muted_state_(config.enable_muted_state) {
Henrik Lundin905495c2015-05-25 16:58:41 +0200114 LOG(LS_INFO) << "NetEq config: " << config.ToString();
henrik.lundin@webrtc.orgea257842014-08-07 12:27:37 +0000115 int fs = config.sample_rate_hz;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000116 if (fs != 8000 && fs != 16000 && fs != 32000 && fs != 48000) {
117 LOG(LS_ERROR) << "Sample rate " << fs << " Hz not supported. " <<
118 "Changing to 8000 Hz.";
119 fs = 8000;
120 }
henrik.lundin1d9061e2016-04-26 12:19:34 -0700121 delay_manager_->SetMaximumDelay(config.max_delay_ms);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000122 fs_hz_ = fs;
123 fs_mult_ = fs / 8000;
henrik.lundind89814b2015-11-23 06:49:25 -0800124 last_output_sample_rate_hz_ = fs;
Peter Kastingdce40cf2015-08-24 14:52:23 -0700125 output_size_samples_ = static_cast<size_t>(kOutputSizeMs * 8 * fs_mult_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000126 decoder_frame_length_ = 3 * output_size_samples_;
127 WebRtcSpl_Init();
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000128 if (create_components) {
129 SetSampleRateAndChannels(fs, 1); // Default is 1 channel.
130 }
henrik.lundin9bc26672015-11-02 03:25:57 -0800131 RTC_DCHECK(!vad_->enabled());
132 if (config.enable_post_decode_vad) {
133 vad_->Enable();
134 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000135}
136
Henrik Lundind67a2192015-08-03 12:54:37 +0200137NetEqImpl::~NetEqImpl() = default;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000138
139int NetEqImpl::InsertPacket(const WebRtcRTPHeader& rtp_header,
kwibergee2bac22015-11-11 10:34:00 -0800140 rtc::ArrayView<const uint8_t> payload,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000141 uint32_t receive_timestamp) {
henrik.lundina689b442015-12-17 03:50:05 -0800142 TRACE_EVENT0("webrtc", "NetEqImpl::InsertPacket");
Tommi9090e0b2016-01-20 13:39:36 +0100143 rtc::CritScope lock(&crit_sect_);
kwibergee2bac22015-11-11 10:34:00 -0800144 int error =
145 InsertPacketInternal(rtp_header, payload, receive_timestamp, false);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000146 if (error != 0) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000147 error_code_ = error;
148 return kFail;
149 }
150 return kOK;
151}
152
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000153int NetEqImpl::InsertSyncPacket(const WebRtcRTPHeader& rtp_header,
154 uint32_t receive_timestamp) {
Tommi9090e0b2016-01-20 13:39:36 +0100155 rtc::CritScope lock(&crit_sect_);
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000156 const uint8_t kSyncPayload[] = { 's', 'y', 'n', 'c' };
kwibergee2bac22015-11-11 10:34:00 -0800157 int error =
158 InsertPacketInternal(rtp_header, kSyncPayload, receive_timestamp, true);
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000159
henrik.lundin@webrtc.orge7ce4372014-01-09 14:01:55 +0000160 if (error != 0) {
henrik.lundin@webrtc.orge7ce4372014-01-09 14:01:55 +0000161 error_code_ = error;
162 return kFail;
163 }
164 return kOK;
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000165}
166
henrik.lundin500c04b2016-03-08 02:36:04 -0800167namespace {
168void SetAudioFrameActivityAndType(bool vad_enabled,
henrik.lundin55480f52016-03-08 02:37:57 -0800169 NetEqImpl::OutputType type,
henrik.lundin500c04b2016-03-08 02:36:04 -0800170 AudioFrame::VADActivity last_vad_activity,
171 AudioFrame* audio_frame) {
172 switch (type) {
henrik.lundin55480f52016-03-08 02:37:57 -0800173 case NetEqImpl::OutputType::kNormalSpeech: {
henrik.lundin500c04b2016-03-08 02:36:04 -0800174 audio_frame->speech_type_ = AudioFrame::kNormalSpeech;
175 audio_frame->vad_activity_ = AudioFrame::kVadActive;
176 break;
177 }
henrik.lundin55480f52016-03-08 02:37:57 -0800178 case NetEqImpl::OutputType::kVadPassive: {
henrik.lundin500c04b2016-03-08 02:36:04 -0800179 // This should only be reached if the VAD is enabled.
180 RTC_DCHECK(vad_enabled);
181 audio_frame->speech_type_ = AudioFrame::kNormalSpeech;
182 audio_frame->vad_activity_ = AudioFrame::kVadPassive;
183 break;
184 }
henrik.lundin55480f52016-03-08 02:37:57 -0800185 case NetEqImpl::OutputType::kCNG: {
henrik.lundin500c04b2016-03-08 02:36:04 -0800186 audio_frame->speech_type_ = AudioFrame::kCNG;
187 audio_frame->vad_activity_ = AudioFrame::kVadPassive;
188 break;
189 }
henrik.lundin55480f52016-03-08 02:37:57 -0800190 case NetEqImpl::OutputType::kPLC: {
henrik.lundin500c04b2016-03-08 02:36:04 -0800191 audio_frame->speech_type_ = AudioFrame::kPLC;
192 audio_frame->vad_activity_ = last_vad_activity;
193 break;
194 }
henrik.lundin55480f52016-03-08 02:37:57 -0800195 case NetEqImpl::OutputType::kPLCCNG: {
henrik.lundin500c04b2016-03-08 02:36:04 -0800196 audio_frame->speech_type_ = AudioFrame::kPLCCNG;
197 audio_frame->vad_activity_ = AudioFrame::kVadPassive;
198 break;
199 }
200 default:
201 RTC_NOTREACHED();
202 }
203 if (!vad_enabled) {
204 // Always set kVadUnknown when receive VAD is inactive.
205 audio_frame->vad_activity_ = AudioFrame::kVadUnknown;
206 }
207}
henrik.lundinbc89de32016-03-08 05:20:14 -0800208} // namespace
henrik.lundin500c04b2016-03-08 02:36:04 -0800209
henrik.lundin7a926812016-05-12 13:51:28 -0700210int NetEqImpl::GetAudio(AudioFrame* audio_frame, bool* muted) {
henrik.lundine1ca1672016-01-08 03:50:08 -0800211 TRACE_EVENT0("webrtc", "NetEqImpl::GetAudio");
Tommi9090e0b2016-01-20 13:39:36 +0100212 rtc::CritScope lock(&crit_sect_);
henrik.lundin7a926812016-05-12 13:51:28 -0700213 int error = GetAudioInternal(audio_frame, muted);
henrik.lundin6d8e0112016-03-04 10:34:21 -0800214 RTC_DCHECK_EQ(
215 audio_frame->sample_rate_hz_,
216 rtc::checked_cast<int>(audio_frame->samples_per_channel_ * 100));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000217 if (error != 0) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000218 error_code_ = error;
219 return kFail;
220 }
henrik.lundin500c04b2016-03-08 02:36:04 -0800221 SetAudioFrameActivityAndType(vad_->enabled(), LastOutputType(),
222 last_vad_activity_, audio_frame);
223 last_vad_activity_ = audio_frame->vad_activity_;
henrik.lundin6d8e0112016-03-04 10:34:21 -0800224 last_output_sample_rate_hz_ = audio_frame->sample_rate_hz_;
henrik.lundind89814b2015-11-23 06:49:25 -0800225 RTC_DCHECK(last_output_sample_rate_hz_ == 8000 ||
226 last_output_sample_rate_hz_ == 16000 ||
227 last_output_sample_rate_hz_ == 32000 ||
228 last_output_sample_rate_hz_ == 48000)
229 << "Unexpected sample rate " << last_output_sample_rate_hz_;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000230 return kOK;
231}
232
kwibergee1879c2015-10-29 06:20:28 -0700233int NetEqImpl::RegisterPayloadType(NetEqDecoder codec,
henrik.lundin4cf61dd2015-12-09 06:20:58 -0800234 const std::string& name,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000235 uint8_t rtp_payload_type) {
Tommi9090e0b2016-01-20 13:39:36 +0100236 rtc::CritScope lock(&crit_sect_);
Henrik Lundind67a2192015-08-03 12:54:37 +0200237 LOG(LS_VERBOSE) << "RegisterPayloadType "
kwibergee1879c2015-10-29 06:20:28 -0700238 << static_cast<int>(rtp_payload_type) << " "
239 << static_cast<int>(codec);
henrik.lundin4cf61dd2015-12-09 06:20:58 -0800240 int ret = decoder_database_->RegisterPayload(rtp_payload_type, codec, name);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000241 if (ret != DecoderDatabase::kOK) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000242 switch (ret) {
243 case DecoderDatabase::kInvalidRtpPayloadType:
244 error_code_ = kInvalidRtpPayloadType;
245 break;
246 case DecoderDatabase::kCodecNotSupported:
247 error_code_ = kCodecNotSupported;
248 break;
249 case DecoderDatabase::kDecoderExists:
250 error_code_ = kDecoderExists;
251 break;
252 default:
253 error_code_ = kOtherError;
254 }
255 return kFail;
256 }
257 return kOK;
258}
259
260int NetEqImpl::RegisterExternalDecoder(AudioDecoder* decoder,
kwibergee1879c2015-10-29 06:20:28 -0700261 NetEqDecoder codec,
henrik.lundin4cf61dd2015-12-09 06:20:58 -0800262 const std::string& codec_name,
Karl Wibergd8399e62015-05-25 14:39:56 +0200263 uint8_t rtp_payload_type,
264 int sample_rate_hz) {
Tommi9090e0b2016-01-20 13:39:36 +0100265 rtc::CritScope lock(&crit_sect_);
Henrik Lundind67a2192015-08-03 12:54:37 +0200266 LOG(LS_VERBOSE) << "RegisterExternalDecoder "
kwibergee1879c2015-10-29 06:20:28 -0700267 << static_cast<int>(rtp_payload_type) << " "
268 << static_cast<int>(codec);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000269 if (!decoder) {
270 LOG(LS_ERROR) << "Cannot register external decoder with NULL pointer";
271 assert(false);
272 return kFail;
273 }
henrik.lundin4cf61dd2015-12-09 06:20:58 -0800274 int ret = decoder_database_->InsertExternal(
275 rtp_payload_type, codec, codec_name, sample_rate_hz, decoder);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000276 if (ret != DecoderDatabase::kOK) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000277 switch (ret) {
278 case DecoderDatabase::kInvalidRtpPayloadType:
279 error_code_ = kInvalidRtpPayloadType;
280 break;
281 case DecoderDatabase::kCodecNotSupported:
282 error_code_ = kCodecNotSupported;
283 break;
284 case DecoderDatabase::kDecoderExists:
285 error_code_ = kDecoderExists;
286 break;
287 case DecoderDatabase::kInvalidSampleRate:
288 error_code_ = kInvalidSampleRate;
289 break;
290 case DecoderDatabase::kInvalidPointer:
291 error_code_ = kInvalidPointer;
292 break;
293 default:
294 error_code_ = kOtherError;
295 }
296 return kFail;
297 }
298 return kOK;
299}
300
301int NetEqImpl::RemovePayloadType(uint8_t rtp_payload_type) {
Tommi9090e0b2016-01-20 13:39:36 +0100302 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000303 int ret = decoder_database_->Remove(rtp_payload_type);
304 if (ret == DecoderDatabase::kOK) {
305 return kOK;
306 } else if (ret == DecoderDatabase::kDecoderNotFound) {
307 error_code_ = kDecoderNotFound;
308 } else {
309 error_code_ = kOtherError;
310 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000311 return kFail;
312}
313
turaj@webrtc.orgf1efc572013-08-16 23:44:24 +0000314bool NetEqImpl::SetMinimumDelay(int delay_ms) {
Tommi9090e0b2016-01-20 13:39:36 +0100315 rtc::CritScope lock(&crit_sect_);
turaj@webrtc.orgf1efc572013-08-16 23:44:24 +0000316 if (delay_ms >= 0 && delay_ms < 10000) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000317 assert(delay_manager_.get());
turaj@webrtc.orgf1efc572013-08-16 23:44:24 +0000318 return delay_manager_->SetMinimumDelay(delay_ms);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000319 }
320 return false;
321}
322
turaj@webrtc.orgf1efc572013-08-16 23:44:24 +0000323bool NetEqImpl::SetMaximumDelay(int delay_ms) {
Tommi9090e0b2016-01-20 13:39:36 +0100324 rtc::CritScope lock(&crit_sect_);
turaj@webrtc.orgf1efc572013-08-16 23:44:24 +0000325 if (delay_ms >= 0 && delay_ms < 10000) {
326 assert(delay_manager_.get());
327 return delay_manager_->SetMaximumDelay(delay_ms);
328 }
329 return false;
330}
331
332int NetEqImpl::LeastRequiredDelayMs() const {
Tommi9090e0b2016-01-20 13:39:36 +0100333 rtc::CritScope lock(&crit_sect_);
turaj@webrtc.orgf1efc572013-08-16 23:44:24 +0000334 assert(delay_manager_.get());
335 return delay_manager_->least_required_delay_ms();
336}
337
Karl Wiberg7f6c4d42015-04-09 15:44:22 +0200338int NetEqImpl::SetTargetDelay() {
339 return kNotImplemented;
340}
341
342int NetEqImpl::TargetDelay() {
343 return kNotImplemented;
344}
345
henrik.lundin9c3efd02015-08-27 13:12:22 -0700346int NetEqImpl::CurrentDelayMs() const {
Tommi9090e0b2016-01-20 13:39:36 +0100347 rtc::CritScope lock(&crit_sect_);
henrik.lundin9c3efd02015-08-27 13:12:22 -0700348 if (fs_hz_ == 0)
349 return 0;
350 // Sum up the samples in the packet buffer with the future length of the sync
351 // buffer, and divide the sum by the sample rate.
352 const size_t delay_samples =
353 packet_buffer_->NumSamplesInBuffer(decoder_database_.get(),
354 decoder_frame_length_) +
355 sync_buffer_->FutureLength();
356 // The division below will truncate.
357 const int delay_ms =
358 static_cast<int>(delay_samples) / rtc::CheckedDivExact(fs_hz_, 1000);
359 return delay_ms;
Karl Wiberg7f6c4d42015-04-09 15:44:22 +0200360}
361
henrik.lundin@webrtc.org7cbc4f92014-10-07 06:37:39 +0000362// Deprecated.
363// TODO(henrik.lundin) Delete.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000364void NetEqImpl::SetPlayoutMode(NetEqPlayoutMode mode) {
Tommi9090e0b2016-01-20 13:39:36 +0100365 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.org7cbc4f92014-10-07 06:37:39 +0000366 if (mode != playout_mode_) {
367 playout_mode_ = mode;
368 CreateDecisionLogic();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000369 }
370}
371
henrik.lundin@webrtc.org7cbc4f92014-10-07 06:37:39 +0000372// Deprecated.
373// TODO(henrik.lundin) Delete.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000374NetEqPlayoutMode NetEqImpl::PlayoutMode() const {
Tommi9090e0b2016-01-20 13:39:36 +0100375 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.org7cbc4f92014-10-07 06:37:39 +0000376 return playout_mode_;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000377}
378
379int NetEqImpl::NetworkStatistics(NetEqNetworkStatistics* stats) {
Tommi9090e0b2016-01-20 13:39:36 +0100380 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000381 assert(decoder_database_.get());
Peter Kastingdce40cf2015-08-24 14:52:23 -0700382 const size_t total_samples_in_buffers =
Peter Kasting728d9032015-06-11 14:31:38 -0700383 packet_buffer_->NumSamplesInBuffer(decoder_database_.get(),
384 decoder_frame_length_) +
Peter Kastingdce40cf2015-08-24 14:52:23 -0700385 sync_buffer_->FutureLength();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000386 assert(delay_manager_.get());
387 assert(decision_logic_.get());
388 stats_.GetNetworkStatistics(fs_hz_, total_samples_in_buffers,
389 decoder_frame_length_, *delay_manager_.get(),
390 *decision_logic_.get(), stats);
391 return 0;
392}
393
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000394void NetEqImpl::GetRtcpStatistics(RtcpStatistics* stats) {
Tommi9090e0b2016-01-20 13:39:36 +0100395 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000396 if (stats) {
397 rtcp_.GetStatistics(false, stats);
398 }
399}
400
401void NetEqImpl::GetRtcpStatisticsNoReset(RtcpStatistics* stats) {
Tommi9090e0b2016-01-20 13:39:36 +0100402 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000403 if (stats) {
404 rtcp_.GetStatistics(true, stats);
405 }
406}
407
408void NetEqImpl::EnableVad() {
Tommi9090e0b2016-01-20 13:39:36 +0100409 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000410 assert(vad_.get());
411 vad_->Enable();
412}
413
414void NetEqImpl::DisableVad() {
Tommi9090e0b2016-01-20 13:39:36 +0100415 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000416 assert(vad_.get());
417 vad_->Disable();
418}
419
henrik.lundin15c51e32016-04-06 08:38:56 -0700420rtc::Optional<uint32_t> NetEqImpl::GetPlayoutTimestamp() const {
Tommi9090e0b2016-01-20 13:39:36 +0100421 rtc::CritScope lock(&crit_sect_);
henrik.lundin0d96ab72016-04-06 12:28:26 -0700422 if (first_packet_ || last_mode_ == kModeRfc3389Cng ||
423 last_mode_ == kModeCodecInternalCng) {
wu@webrtc.org94454b72014-06-05 20:34:08 +0000424 // We don't have a valid RTP timestamp until we have decoded our first
henrik.lundin0d96ab72016-04-06 12:28:26 -0700425 // RTP packet. Also, the RTP timestamp is not accurate while playing CNG,
426 // which is indicated by returning an empty value.
henrik.lundin9a410dd2016-04-06 01:39:22 -0700427 return rtc::Optional<uint32_t>();
wu@webrtc.org94454b72014-06-05 20:34:08 +0000428 }
henrik.lundin9a410dd2016-04-06 01:39:22 -0700429 return rtc::Optional<uint32_t>(
430 timestamp_scaler_->ToExternal(playout_timestamp_));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000431}
432
henrik.lundind89814b2015-11-23 06:49:25 -0800433int NetEqImpl::last_output_sample_rate_hz() const {
Tommi9090e0b2016-01-20 13:39:36 +0100434 rtc::CritScope lock(&crit_sect_);
henrik.lundind89814b2015-11-23 06:49:25 -0800435 return last_output_sample_rate_hz_;
436}
437
Karl Wiberg7f6c4d42015-04-09 15:44:22 +0200438int NetEqImpl::SetTargetNumberOfChannels() {
439 return kNotImplemented;
440}
441
442int NetEqImpl::SetTargetSampleRate() {
443 return kNotImplemented;
444}
445
henrik.lundin@webrtc.orgb0f4b3d2014-11-04 08:53:10 +0000446int NetEqImpl::LastError() const {
Tommi9090e0b2016-01-20 13:39:36 +0100447 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000448 return error_code_;
449}
450
451int NetEqImpl::LastDecoderError() {
Tommi9090e0b2016-01-20 13:39:36 +0100452 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000453 return decoder_error_code_;
454}
455
456void NetEqImpl::FlushBuffers() {
Tommi9090e0b2016-01-20 13:39:36 +0100457 rtc::CritScope lock(&crit_sect_);
Henrik Lundind67a2192015-08-03 12:54:37 +0200458 LOG(LS_VERBOSE) << "FlushBuffers";
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000459 packet_buffer_->Flush();
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +0000460 assert(sync_buffer_.get());
461 assert(expand_.get());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000462 sync_buffer_->Flush();
463 sync_buffer_->set_next_index(sync_buffer_->next_index() -
464 expand_->overlap_length());
465 // Set to wait for new codec.
466 first_packet_ = true;
467}
468
turaj@webrtc.org3170b572013-08-30 15:36:53 +0000469void NetEqImpl::PacketBufferStatistics(int* current_num_packets,
henrik.lundin@webrtc.org116ed1d2014-04-28 08:20:04 +0000470 int* max_num_packets) const {
Tommi9090e0b2016-01-20 13:39:36 +0100471 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.org116ed1d2014-04-28 08:20:04 +0000472 packet_buffer_->BufferStat(current_num_packets, max_num_packets);
turaj@webrtc.org3170b572013-08-30 15:36:53 +0000473}
474
henrik.lundin48ed9302015-10-29 05:36:24 -0700475void NetEqImpl::EnableNack(size_t max_nack_list_size) {
Tommi9090e0b2016-01-20 13:39:36 +0100476 rtc::CritScope lock(&crit_sect_);
henrik.lundin48ed9302015-10-29 05:36:24 -0700477 if (!nack_enabled_) {
478 const int kNackThresholdPackets = 2;
479 nack_.reset(Nack::Create(kNackThresholdPackets));
480 nack_enabled_ = true;
481 nack_->UpdateSampleRate(fs_hz_);
482 }
483 nack_->SetMaxNackListSize(max_nack_list_size);
484}
485
486void NetEqImpl::DisableNack() {
Tommi9090e0b2016-01-20 13:39:36 +0100487 rtc::CritScope lock(&crit_sect_);
henrik.lundin48ed9302015-10-29 05:36:24 -0700488 nack_.reset();
489 nack_enabled_ = false;
490}
491
492std::vector<uint16_t> NetEqImpl::GetNackList(int64_t round_trip_time_ms) const {
Tommi9090e0b2016-01-20 13:39:36 +0100493 rtc::CritScope lock(&crit_sect_);
henrik.lundin48ed9302015-10-29 05:36:24 -0700494 if (!nack_enabled_) {
495 return std::vector<uint16_t>();
496 }
497 RTC_DCHECK(nack_.get());
498 return nack_->GetNackList(round_trip_time_ms);
minyue@webrtc.orgd7301772013-08-29 00:58:14 +0000499}
500
henrik.lundin@webrtc.orgb287d962014-04-07 21:21:45 +0000501const SyncBuffer* NetEqImpl::sync_buffer_for_test() const {
Tommi9090e0b2016-01-20 13:39:36 +0100502 rtc::CritScope lock(&crit_sect_);
henrik.lundin@webrtc.orgb287d962014-04-07 21:21:45 +0000503 return sync_buffer_.get();
504}
505
minyue5bd33972016-05-02 04:46:11 -0700506Operations NetEqImpl::last_operation_for_test() const {
507 rtc::CritScope lock(&crit_sect_);
508 return last_operation_;
509}
510
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000511// Methods below this line are private.
512
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000513int NetEqImpl::InsertPacketInternal(const WebRtcRTPHeader& rtp_header,
kwibergee2bac22015-11-11 10:34:00 -0800514 rtc::ArrayView<const uint8_t> payload,
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000515 uint32_t receive_timestamp,
516 bool is_sync_packet) {
kwibergee2bac22015-11-11 10:34:00 -0800517 if (payload.empty()) {
518 LOG_F(LS_ERROR) << "payload is empty";
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000519 return kInvalidPointer;
520 }
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000521 // Sanity checks for sync-packets.
522 if (is_sync_packet) {
523 if (decoder_database_->IsDtmf(rtp_header.header.payloadType) ||
524 decoder_database_->IsRed(rtp_header.header.payloadType) ||
525 decoder_database_->IsComfortNoise(rtp_header.header.payloadType)) {
526 LOG_F(LS_ERROR) << "Sync-packet with an unacceptable payload type "
pkasting@chromium.orgd3245462015-02-23 21:28:22 +0000527 << static_cast<int>(rtp_header.header.payloadType);
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000528 return kSyncPacketNotAccepted;
529 }
530 if (first_packet_ ||
531 rtp_header.header.payloadType != current_rtp_payload_type_ ||
532 rtp_header.header.ssrc != ssrc_) {
533 // Even if |current_rtp_payload_type_| is 0xFF, sync-packet isn't
534 // accepted.
pkasting@chromium.orgd3245462015-02-23 21:28:22 +0000535 LOG_F(LS_ERROR)
536 << "Changing codec, SSRC or first packet with sync-packet.";
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000537 return kSyncPacketNotAccepted;
538 }
539 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000540 PacketList packet_list;
541 RTPHeader main_header;
542 {
henrik.lundin@webrtc.orge1d468c2013-01-30 07:37:20 +0000543 // Convert to Packet.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000544 // Create |packet| within this separate scope, since it should not be used
545 // directly once it's been inserted in the packet list. This way, |packet|
546 // is not defined outside of this block.
henrik.lundin@webrtc.orge1d468c2013-01-30 07:37:20 +0000547 Packet* packet = new Packet;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000548 packet->header.markerBit = false;
549 packet->header.payloadType = rtp_header.header.payloadType;
550 packet->header.sequenceNumber = rtp_header.header.sequenceNumber;
551 packet->header.timestamp = rtp_header.header.timestamp;
552 packet->header.ssrc = rtp_header.header.ssrc;
553 packet->header.numCSRCs = 0;
kwibergee2bac22015-11-11 10:34:00 -0800554 packet->payload_length = payload.size();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000555 packet->primary = true;
henrik.lundin84f8cd62016-04-26 07:45:16 -0700556 // Waiting time will be set upon inserting the packet in the buffer.
557 RTC_DCHECK(!packet->waiting_time);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000558 packet->payload = new uint8_t[packet->payload_length];
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000559 packet->sync_packet = is_sync_packet;
henrik.lundin@webrtc.org73deaad2013-01-31 13:32:51 +0000560 if (!packet->payload) {
561 LOG_F(LS_ERROR) << "Payload pointer is NULL.";
562 }
kwibergee2bac22015-11-11 10:34:00 -0800563 assert(!payload.empty()); // Already checked above.
564 memcpy(packet->payload, payload.data(), packet->payload_length);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000565 // Insert packet in a packet list.
566 packet_list.push_back(packet);
567 // Save main payloads header for later.
568 memcpy(&main_header, &packet->header, sizeof(main_header));
569 }
570
turaj@webrtc.orga6101d72013-10-01 22:01:09 +0000571 bool update_sample_rate_and_channels = false;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000572 // Reinitialize NetEq if it's needed (changed SSRC or first call).
573 if ((main_header.ssrc != ssrc_) || first_packet_) {
henrik.lundin@webrtc.org6ff3ac12014-11-20 14:14:49 +0000574 // Note: |first_packet_| will be cleared further down in this method, once
575 // the packet has been successfully inserted into the packet buffer.
576
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000577 rtcp_.Init(main_header.sequenceNumber);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000578
579 // Flush the packet buffer and DTMF buffer.
580 packet_buffer_->Flush();
581 dtmf_buffer_->Flush();
582
583 // Store new SSRC.
584 ssrc_ = main_header.ssrc;
585
turaj@webrtc.org4d06db52013-03-27 18:31:42 +0000586 // Update audio buffer timestamp.
587 sync_buffer_->IncreaseEndTimestamp(main_header.timestamp - timestamp_);
588
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000589 // Update codecs.
590 timestamp_ = main_header.timestamp;
591 current_rtp_payload_type_ = main_header.payloadType;
592
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000593 // Reset timestamp scaling.
594 timestamp_scaler_->Reset();
turaj@webrtc.orga6101d72013-10-01 22:01:09 +0000595
henrik.lundin@webrtc.org6ff3ac12014-11-20 14:14:49 +0000596 // Trigger an update of sampling rate and the number of channels.
turaj@webrtc.orga6101d72013-10-01 22:01:09 +0000597 update_sample_rate_and_channels = true;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000598 }
599
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000600 // Update RTCP statistics, only for regular packets.
601 if (!is_sync_packet)
602 rtcp_.Update(main_header, receive_timestamp);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000603
604 // Check for RED payload type, and separate payloads into several packets.
605 if (decoder_database_->IsRed(main_header.payloadType)) {
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000606 assert(!is_sync_packet); // We had a sanity check for this.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000607 if (payload_splitter_->SplitRed(&packet_list) != PayloadSplitter::kOK) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000608 PacketBuffer::DeleteAllPackets(&packet_list);
609 return kRedundancySplitError;
610 }
611 // Only accept a few RED payloads of the same type as the main data,
612 // DTMF events and CNG.
613 payload_splitter_->CheckRedPayloads(&packet_list, *decoder_database_);
614 // Update the stored main payload header since the main payload has now
615 // changed.
616 memcpy(&main_header, &packet_list.front()->header, sizeof(main_header));
617 }
618
619 // Check payload types.
620 if (decoder_database_->CheckPayloadTypes(packet_list) ==
621 DecoderDatabase::kDecoderNotFound) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000622 PacketBuffer::DeleteAllPackets(&packet_list);
623 return kUnknownRtpPayloadType;
624 }
625
626 // Scale timestamp to internal domain (only for some codecs).
627 timestamp_scaler_->ToInternal(&packet_list);
628
629 // Process DTMF payloads. Cycle through the list of packets, and pick out any
630 // DTMF payloads found.
631 PacketList::iterator it = packet_list.begin();
632 while (it != packet_list.end()) {
633 Packet* current_packet = (*it);
634 assert(current_packet);
635 assert(current_packet->payload);
636 if (decoder_database_->IsDtmf(current_packet->header.payloadType)) {
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000637 assert(!current_packet->sync_packet); // We had a sanity check for this.
minyue@webrtc.org9721db72013-08-06 05:36:26 +0000638 DtmfEvent event;
639 int ret = DtmfBuffer::ParseEvent(
640 current_packet->header.timestamp,
641 current_packet->payload,
642 current_packet->payload_length,
643 &event);
644 if (ret != DtmfBuffer::kOK) {
minyue@webrtc.org9721db72013-08-06 05:36:26 +0000645 PacketBuffer::DeleteAllPackets(&packet_list);
646 return kDtmfParsingError;
647 }
648 if (dtmf_buffer_->InsertEvent(event) != DtmfBuffer::kOK) {
minyue@webrtc.org9721db72013-08-06 05:36:26 +0000649 PacketBuffer::DeleteAllPackets(&packet_list);
650 return kDtmfInsertError;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000651 }
652 // TODO(hlundin): Let the destructor of Packet handle the payload.
653 delete [] current_packet->payload;
654 delete current_packet;
655 it = packet_list.erase(it);
656 } else {
657 ++it;
658 }
659 }
660
minyue@webrtc.org7549ff42014-04-02 15:03:01 +0000661 // Check for FEC in packets, and separate payloads into several packets.
662 int ret = payload_splitter_->SplitFec(&packet_list, decoder_database_.get());
663 if (ret != PayloadSplitter::kOK) {
minyue@webrtc.org7549ff42014-04-02 15:03:01 +0000664 PacketBuffer::DeleteAllPackets(&packet_list);
665 switch (ret) {
666 case PayloadSplitter::kUnknownPayloadType:
667 return kUnknownRtpPayloadType;
668 default:
669 return kOtherError;
670 }
671 }
672
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000673 // Split payloads into smaller chunks. This also verifies that all payloads
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +0000674 // are of a known payload type. SplitAudio() method is protected against
675 // sync-packets.
minyue@webrtc.orgb28bfa72014-03-21 12:07:40 +0000676 ret = payload_splitter_->SplitAudio(&packet_list, *decoder_database_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000677 if (ret != PayloadSplitter::kOK) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000678 PacketBuffer::DeleteAllPackets(&packet_list);
679 switch (ret) {
680 case PayloadSplitter::kUnknownPayloadType:
681 return kUnknownRtpPayloadType;
682 case PayloadSplitter::kFrameSplitError:
683 return kFrameSplitError;
684 default:
685 return kOtherError;
686 }
687 }
688
ossu97ba30e2016-04-25 07:55:58 -0700689 // Update bandwidth estimate, if the packet is not sync-packet nor comfort
690 // noise.
691 if (!packet_list.empty() && !packet_list.front()->sync_packet &&
692 !decoder_database_->IsComfortNoise(main_header.payloadType)) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000693 // The list can be empty here if we got nothing but DTMF payloads.
694 AudioDecoder* decoder =
695 decoder_database_->GetDecoder(main_header.payloadType);
696 assert(decoder); // Should always get a valid object, since we have
ossu97ba30e2016-04-25 07:55:58 -0700697 // already checked that the payload types are known.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000698 decoder->IncomingPacket(packet_list.front()->payload,
699 packet_list.front()->payload_length,
700 packet_list.front()->header.sequenceNumber,
701 packet_list.front()->header.timestamp,
702 receive_timestamp);
703 }
704
henrik.lundin48ed9302015-10-29 05:36:24 -0700705 if (nack_enabled_) {
706 RTC_DCHECK(nack_);
707 if (update_sample_rate_and_channels) {
708 nack_->Reset();
709 }
710 nack_->UpdateLastReceivedPacket(packet_list.front()->header.sequenceNumber,
711 packet_list.front()->header.timestamp);
712 }
713
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000714 // Insert packets in buffer.
henrik.lundin116c84e2015-08-27 13:14:48 -0700715 const size_t buffer_length_before_insert =
716 packet_buffer_->NumPacketsInBuffer();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000717 ret = packet_buffer_->InsertPacketList(
718 &packet_list,
719 *decoder_database_,
720 &current_rtp_payload_type_,
721 &current_cng_rtp_payload_type_);
722 if (ret == PacketBuffer::kFlushed) {
723 // Reset DSP timestamp etc. if packet buffer flushed.
724 new_codec_ = true;
turaj@webrtc.orga6101d72013-10-01 22:01:09 +0000725 update_sample_rate_and_channels = true;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000726 } else if (ret != PacketBuffer::kOK) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000727 PacketBuffer::DeleteAllPackets(&packet_list);
minyue@webrtc.org7bb54362013-08-06 05:40:57 +0000728 return kOtherError;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000729 }
henrik.lundin@webrtc.org6ff3ac12014-11-20 14:14:49 +0000730
731 if (first_packet_) {
732 first_packet_ = false;
733 // Update the codec on the next GetAudio call.
734 new_codec_ = true;
735 }
736
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000737 if (current_rtp_payload_type_ != 0xFF) {
738 const DecoderDatabase::DecoderInfo* dec_info =
739 decoder_database_->GetDecoderInfo(current_rtp_payload_type_);
740 if (!dec_info) {
741 assert(false); // Already checked that the payload type is known.
742 }
743 }
744
turaj@webrtc.orga6101d72013-10-01 22:01:09 +0000745 if (update_sample_rate_and_channels && !packet_buffer_->Empty()) {
746 // We do not use |current_rtp_payload_type_| to |set payload_type|, but
747 // get the next RTP header from |packet_buffer_| to obtain the payload type.
748 // The reason for it is the following corner case. If NetEq receives a
749 // CNG packet with a sample rate different than the current CNG then it
750 // flushes its buffer, assuming send codec must have been changed. However,
751 // payload type of the hypothetically new send codec is not known.
752 const RTPHeader* rtp_header = packet_buffer_->NextRtpHeader();
753 assert(rtp_header);
754 int payload_type = rtp_header->payloadType;
ossu97ba30e2016-04-25 07:55:58 -0700755 size_t channels = 1;
756 if (!decoder_database_->IsComfortNoise(payload_type)) {
757 AudioDecoder* decoder = decoder_database_->GetDecoder(payload_type);
758 assert(decoder); // Payloads are already checked to be valid.
759 channels = decoder->Channels();
760 }
turaj@webrtc.orga6101d72013-10-01 22:01:09 +0000761 const DecoderDatabase::DecoderInfo* decoder_info =
762 decoder_database_->GetDecoderInfo(payload_type);
763 assert(decoder_info);
764 if (decoder_info->fs_hz != fs_hz_ ||
ossu97ba30e2016-04-25 07:55:58 -0700765 channels != algorithm_buffer_->Channels()) {
766 SetSampleRateAndChannels(decoder_info->fs_hz, channels);
henrik.lundin48ed9302015-10-29 05:36:24 -0700767 }
768 if (nack_enabled_) {
769 RTC_DCHECK(nack_);
770 // Update the sample rate even if the rate is not new, because of Reset().
771 nack_->UpdateSampleRate(fs_hz_);
772 }
turaj@webrtc.orga6101d72013-10-01 22:01:09 +0000773 }
774
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000775 // TODO(hlundin): Move this code to DelayManager class.
776 const DecoderDatabase::DecoderInfo* dec_info =
777 decoder_database_->GetDecoderInfo(main_header.payloadType);
778 assert(dec_info); // Already checked that the payload type is known.
779 delay_manager_->LastDecoderType(dec_info->codec_type);
780 if (delay_manager_->last_pack_cng_or_dtmf() == 0) {
781 // Calculate the total speech length carried in each packet.
henrik.lundin116c84e2015-08-27 13:14:48 -0700782 const size_t buffer_length_after_insert =
783 packet_buffer_->NumPacketsInBuffer();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000784
henrik.lundin116c84e2015-08-27 13:14:48 -0700785 if (buffer_length_after_insert > buffer_length_before_insert) {
786 const size_t packet_length_samples =
787 (buffer_length_after_insert - buffer_length_before_insert) *
788 decoder_frame_length_;
789 if (packet_length_samples != decision_logic_->packet_length_samples()) {
790 decision_logic_->set_packet_length_samples(packet_length_samples);
791 delay_manager_->SetPacketAudioLength(
792 rtc::checked_cast<int>((1000 * packet_length_samples) / fs_hz_));
793 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000794 }
795
796 // Update statistics.
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000797 if ((int32_t) (main_header.timestamp - timestamp_) >= 0 &&
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000798 !new_codec_) {
799 // Only update statistics if incoming packet is not older than last played
800 // out packet, and if new codec flag is not set.
801 delay_manager_->Update(main_header.sequenceNumber, main_header.timestamp,
802 fs_hz_);
803 }
804 } else if (delay_manager_->last_pack_cng_or_dtmf() == -1) {
805 // This is first "normal" packet after CNG or DTMF.
806 // Reset packet time counter and measure time until next packet,
807 // but don't update statistics.
808 delay_manager_->set_last_pack_cng_or_dtmf(0);
809 delay_manager_->ResetPacketIatCount();
810 }
811 return 0;
812}
813
henrik.lundin7a926812016-05-12 13:51:28 -0700814int NetEqImpl::GetAudioInternal(AudioFrame* audio_frame, bool* muted) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000815 PacketList packet_list;
816 DtmfEvent dtmf_event;
817 Operations operation;
818 bool play_dtmf;
henrik.lundin7a926812016-05-12 13:51:28 -0700819 *muted = false;
henrik.lundined497212016-04-25 10:11:38 -0700820 tick_timer_->Increment();
henrik.lundin60f6ce22016-05-10 03:52:04 -0700821 stats_.IncreaseCounter(output_size_samples_, fs_hz_);
henrik.lundin7a926812016-05-12 13:51:28 -0700822
823 // Check for muted state.
824 if (enable_muted_state_ && expand_->Muted() && packet_buffer_->Empty()) {
825 RTC_DCHECK_EQ(last_mode_, kModeExpand);
826 playout_timestamp_ += static_cast<uint32_t>(output_size_samples_);
827 audio_frame->sample_rate_hz_ = fs_hz_;
828 audio_frame->samples_per_channel_ = output_size_samples_;
829 audio_frame->timestamp_ =
830 first_packet_
831 ? 0
832 : timestamp_scaler_->ToExternal(playout_timestamp_) -
833 static_cast<uint32_t>(audio_frame->samples_per_channel_);
834 audio_frame->num_channels_ = sync_buffer_->Channels();
henrik.lundin612c25e2016-05-25 08:21:04 -0700835 stats_.ExpandedNoiseSamples(output_size_samples_);
henrik.lundin7a926812016-05-12 13:51:28 -0700836 *muted = true;
837 return 0;
838 }
839
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000840 int return_value = GetDecision(&operation, &packet_list, &dtmf_event,
841 &play_dtmf);
842 if (return_value != 0) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000843 last_mode_ = kModeError;
844 return return_value;
845 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000846
847 AudioDecoder::SpeechType speech_type;
848 int length = 0;
849 int decode_return_value = Decode(&packet_list, &operation,
850 &length, &speech_type);
851
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000852 assert(vad_.get());
853 bool sid_frame_available =
854 (operation == kRfc3389Cng && !packet_list.empty());
Peter Kastingdce40cf2015-08-24 14:52:23 -0700855 vad_->Update(decoded_buffer_.get(), static_cast<size_t>(length), speech_type,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000856 sid_frame_available, fs_hz_);
857
henrik.lundinb1fb72b2016-05-03 08:18:47 -0700858 if (sid_frame_available || speech_type == AudioDecoder::kComfortNoise) {
859 // Start a new stopwatch since we are decoding a new CNG packet.
860 generated_noise_stopwatch_ = tick_timer_->GetNewStopwatch();
861 }
862
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000863 algorithm_buffer_->Clear();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000864 switch (operation) {
865 case kNormal: {
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000866 DoNormal(decoded_buffer_.get(), length, speech_type, play_dtmf);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000867 break;
868 }
869 case kMerge: {
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000870 DoMerge(decoded_buffer_.get(), length, speech_type, play_dtmf);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000871 break;
872 }
873 case kExpand: {
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000874 return_value = DoExpand(play_dtmf);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000875 break;
876 }
Henrik Lundincf808d22015-05-27 14:33:29 +0200877 case kAccelerate:
878 case kFastAccelerate: {
879 const bool fast_accelerate =
880 enable_fast_accelerate_ && (operation == kFastAccelerate);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000881 return_value = DoAccelerate(decoded_buffer_.get(), length, speech_type,
Henrik Lundincf808d22015-05-27 14:33:29 +0200882 play_dtmf, fast_accelerate);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000883 break;
884 }
885 case kPreemptiveExpand: {
886 return_value = DoPreemptiveExpand(decoded_buffer_.get(), length,
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000887 speech_type, play_dtmf);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000888 break;
889 }
890 case kRfc3389Cng:
891 case kRfc3389CngNoPacket: {
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000892 return_value = DoRfc3389Cng(&packet_list, play_dtmf);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000893 break;
894 }
895 case kCodecInternalCng: {
896 // This handles the case when there is no transmission and the decoder
897 // should produce internal comfort noise.
898 // TODO(hlundin): Write test for codec-internal CNG.
minyuel6d92bf52015-09-23 15:20:39 +0200899 DoCodecInternalCng(decoded_buffer_.get(), length);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000900 break;
901 }
902 case kDtmf: {
903 // TODO(hlundin): Write test for this.
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000904 return_value = DoDtmf(dtmf_event, &play_dtmf);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000905 break;
906 }
907 case kAlternativePlc: {
908 // TODO(hlundin): Write test for this.
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000909 DoAlternativePlc(false);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000910 break;
911 }
912 case kAlternativePlcIncreaseTimestamp: {
913 // TODO(hlundin): Write test for this.
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000914 DoAlternativePlc(true);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000915 break;
916 }
917 case kAudioRepetitionIncreaseTimestamp: {
918 // TODO(hlundin): Write test for this.
Peter Kastingb7e50542015-06-11 12:55:50 -0700919 sync_buffer_->IncreaseEndTimestamp(
920 static_cast<uint32_t>(output_size_samples_));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000921 // Skipping break on purpose. Execution should move on into the
922 // next case.
kjellander@webrtc.org7d2b6a92015-01-28 18:37:58 +0000923 FALLTHROUGH();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000924 }
925 case kAudioRepetition: {
926 // TODO(hlundin): Write test for this.
927 // Copy last |output_size_samples_| from |sync_buffer_| to
928 // |algorithm_buffer|.
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000929 algorithm_buffer_->PushBackFromIndex(
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000930 *sync_buffer_, sync_buffer_->Size() - output_size_samples_);
931 expand_->Reset();
932 break;
933 }
934 case kUndefined: {
Henrik Lundind67a2192015-08-03 12:54:37 +0200935 LOG(LS_ERROR) << "Invalid operation kUndefined.";
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000936 assert(false); // This should not happen.
937 last_mode_ = kModeError;
938 return kInvalidOperation;
939 }
940 } // End of switch.
minyue5bd33972016-05-02 04:46:11 -0700941 last_operation_ = operation;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000942 if (return_value < 0) {
943 return return_value;
944 }
945
946 if (last_mode_ != kModeRfc3389Cng) {
947 comfort_noise_->Reset();
948 }
949
950 // Copy from |algorithm_buffer| to |sync_buffer_|.
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +0000951 sync_buffer_->PushBack(*algorithm_buffer_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000952
953 // Extract data from |sync_buffer_| to |output|.
turaj@webrtc.org362a55e2013-09-20 16:25:28 +0000954 size_t num_output_samples_per_channel = output_size_samples_;
955 size_t num_output_samples = output_size_samples_ * sync_buffer_->Channels();
henrik.lundin6d8e0112016-03-04 10:34:21 -0800956 if (num_output_samples > AudioFrame::kMaxDataSizeSamples) {
957 LOG(LS_WARNING) << "Output array is too short. "
958 << AudioFrame::kMaxDataSizeSamples << " < "
959 << output_size_samples_ << " * "
960 << sync_buffer_->Channels();
961 num_output_samples = AudioFrame::kMaxDataSizeSamples;
962 num_output_samples_per_channel =
963 AudioFrame::kMaxDataSizeSamples / sync_buffer_->Channels();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000964 }
henrik.lundin6d8e0112016-03-04 10:34:21 -0800965 sync_buffer_->GetNextAudioInterleaved(num_output_samples_per_channel,
966 audio_frame);
967 audio_frame->sample_rate_hz_ = fs_hz_;
Henrik Lundin05f71fc2015-09-01 11:51:58 +0200968 if (sync_buffer_->FutureLength() < expand_->overlap_length()) {
969 // The sync buffer should always contain |overlap_length| samples, but now
970 // too many samples have been extracted. Reinstall the |overlap_length|
971 // lookahead by moving the index.
972 const size_t missing_lookahead_samples =
973 expand_->overlap_length() - sync_buffer_->FutureLength();
henrikg91d6ede2015-09-17 00:24:34 -0700974 RTC_DCHECK_GE(sync_buffer_->next_index(), missing_lookahead_samples);
Henrik Lundin05f71fc2015-09-01 11:51:58 +0200975 sync_buffer_->set_next_index(sync_buffer_->next_index() -
976 missing_lookahead_samples);
977 }
henrik.lundin6d8e0112016-03-04 10:34:21 -0800978 if (audio_frame->samples_per_channel_ != output_size_samples_) {
979 LOG(LS_ERROR) << "audio_frame->samples_per_channel_ ("
980 << audio_frame->samples_per_channel_
Henrik Lundind67a2192015-08-03 12:54:37 +0200981 << ") != output_size_samples_ (" << output_size_samples_
982 << ")";
minyue@webrtc.orgdb1cefc2013-08-13 01:39:21 +0000983 // TODO(minyue): treatment of under-run, filling zeros
henrik.lundin6d8e0112016-03-04 10:34:21 -0800984 memset(audio_frame->data_, 0, num_output_samples * sizeof(int16_t));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000985 return kSampleUnderrun;
986 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000987
988 // Should always have overlap samples left in the |sync_buffer_|.
henrikg91d6ede2015-09-17 00:24:34 -0700989 RTC_DCHECK_GE(sync_buffer_->FutureLength(), expand_->overlap_length());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000990
991 if (play_dtmf) {
henrik.lundin6d8e0112016-03-04 10:34:21 -0800992 return_value =
993 DtmfOverdub(dtmf_event, sync_buffer_->Channels(), audio_frame->data_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000994 }
995
996 // Update the background noise parameters if last operation wrote data
997 // straight from the decoder to the |sync_buffer_|. That is, none of the
998 // operations that modify the signal can be followed by a parameter update.
999 if ((last_mode_ == kModeNormal) ||
1000 (last_mode_ == kModeAccelerateFail) ||
1001 (last_mode_ == kModePreemptiveExpandFail) ||
1002 (last_mode_ == kModeRfc3389Cng) ||
1003 (last_mode_ == kModeCodecInternalCng)) {
1004 background_noise_->Update(*sync_buffer_, *vad_.get());
1005 }
1006
1007 if (operation == kDtmf) {
1008 // DTMF data was written the end of |sync_buffer_|.
1009 // Update index to end of DTMF data in |sync_buffer_|.
1010 sync_buffer_->set_dtmf_index(sync_buffer_->Size());
1011 }
1012
henrik.lundin@webrtc.orged865b52014-03-06 10:28:07 +00001013 if (last_mode_ != kModeExpand) {
1014 // If last operation was not expand, calculate the |playout_timestamp_| from
1015 // the |sync_buffer_|. However, do not update the |playout_timestamp_| if it
1016 // would be moved "backwards".
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001017 uint32_t temp_timestamp = sync_buffer_->end_timestamp() -
turaj@webrtc.org362a55e2013-09-20 16:25:28 +00001018 static_cast<uint32_t>(sync_buffer_->FutureLength());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001019 if (static_cast<int32_t>(temp_timestamp - playout_timestamp_) > 0) {
1020 playout_timestamp_ = temp_timestamp;
1021 }
1022 } else {
1023 // Use dead reckoning to estimate the |playout_timestamp_|.
Peter Kastingb7e50542015-06-11 12:55:50 -07001024 playout_timestamp_ += static_cast<uint32_t>(output_size_samples_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001025 }
henrik.lundin15c51e32016-04-06 08:38:56 -07001026 // Set the timestamp in the audio frame to zero before the first packet has
1027 // been inserted. Otherwise, subtract the frame size in samples to get the
1028 // timestamp of the first sample in the frame (playout_timestamp_ is the
1029 // last + 1).
1030 audio_frame->timestamp_ =
1031 first_packet_
1032 ? 0
1033 : timestamp_scaler_->ToExternal(playout_timestamp_) -
1034 static_cast<uint32_t>(audio_frame->samples_per_channel_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001035
henrik.lundinb1fb72b2016-05-03 08:18:47 -07001036 if (!(last_mode_ == kModeRfc3389Cng ||
1037 last_mode_ == kModeCodecInternalCng ||
1038 last_mode_ == kModeExpand)) {
1039 generated_noise_stopwatch_.reset();
1040 }
1041
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001042 if (decode_return_value) return decode_return_value;
1043 return return_value;
1044}
1045
1046int NetEqImpl::GetDecision(Operations* operation,
1047 PacketList* packet_list,
1048 DtmfEvent* dtmf_event,
1049 bool* play_dtmf) {
1050 // Initialize output variables.
1051 *play_dtmf = false;
1052 *operation = kUndefined;
1053
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00001054 assert(sync_buffer_.get());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001055 uint32_t end_timestamp = sync_buffer_->end_timestamp();
henrik.lundin@webrtc.org52b42cb2014-11-04 14:03:58 +00001056 if (!new_codec_) {
1057 const uint32_t five_seconds_samples = 5 * fs_hz_;
1058 packet_buffer_->DiscardOldPackets(end_timestamp, five_seconds_samples);
1059 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001060 const RTPHeader* header = packet_buffer_->NextRtpHeader();
1061
henrik.lundinb1fb72b2016-05-03 08:18:47 -07001062 RTC_DCHECK(!generated_noise_stopwatch_ ||
1063 generated_noise_stopwatch_->ElapsedTicks() >= 1);
1064 uint64_t generated_noise_samples =
1065 generated_noise_stopwatch_
1066 ? (generated_noise_stopwatch_->ElapsedTicks() - 1) *
1067 output_size_samples_ +
1068 decision_logic_->noise_fast_forward()
1069 : 0;
1070
henrik.lundin@webrtc.orgca8cb952014-03-12 10:26:52 +00001071 if (decision_logic_->CngRfc3389On() || last_mode_ == kModeRfc3389Cng) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001072 // Because of timestamp peculiarities, we have to "manually" disallow using
1073 // a CNG packet with the same timestamp as the one that was last played.
1074 // This can happen when using redundancy and will cause the timing to shift.
henrik.lundin@webrtc.org24779fe2014-03-14 12:40:05 +00001075 while (header && decoder_database_->IsComfortNoise(header->payloadType) &&
1076 (end_timestamp >= header->timestamp ||
henrik.lundinb1fb72b2016-05-03 08:18:47 -07001077 end_timestamp + generated_noise_samples > header->timestamp)) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001078 // Don't use this packet, discard it.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001079 if (packet_buffer_->DiscardNextPacket() != PacketBuffer::kOK) {
1080 assert(false); // Must be ok by design.
1081 }
1082 // Check buffer again.
1083 if (!new_codec_) {
henrik.lundin@webrtc.org52b42cb2014-11-04 14:03:58 +00001084 packet_buffer_->DiscardOldPackets(end_timestamp, 5 * fs_hz_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001085 }
1086 header = packet_buffer_->NextRtpHeader();
1087 }
1088 }
1089
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00001090 assert(expand_.get());
turaj@webrtc.org362a55e2013-09-20 16:25:28 +00001091 const int samples_left = static_cast<int>(sync_buffer_->FutureLength() -
1092 expand_->overlap_length());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001093 if (last_mode_ == kModeAccelerateSuccess ||
1094 last_mode_ == kModeAccelerateLowEnergy ||
1095 last_mode_ == kModePreemptiveExpandSuccess ||
1096 last_mode_ == kModePreemptiveExpandLowEnergy) {
1097 // Subtract (samples_left + output_size_samples_) from sampleMemory.
Peter Kastingdce40cf2015-08-24 14:52:23 -07001098 decision_logic_->AddSampleMemory(
1099 -(samples_left + rtc::checked_cast<int>(output_size_samples_)));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001100 }
1101
1102 // Check if it is time to play a DTMF event.
Peter Kastingb7e50542015-06-11 12:55:50 -07001103 if (dtmf_buffer_->GetEvent(
1104 static_cast<uint32_t>(
henrik.lundinb1fb72b2016-05-03 08:18:47 -07001105 end_timestamp + generated_noise_samples),
Peter Kastingb7e50542015-06-11 12:55:50 -07001106 dtmf_event)) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001107 *play_dtmf = true;
1108 }
1109
1110 // Get instruction.
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00001111 assert(sync_buffer_.get());
1112 assert(expand_.get());
henrik.lundinb1fb72b2016-05-03 08:18:47 -07001113 generated_noise_samples =
1114 generated_noise_stopwatch_
1115 ? generated_noise_stopwatch_->ElapsedTicks() * output_size_samples_ +
1116 decision_logic_->noise_fast_forward()
1117 : 0;
1118 *operation = decision_logic_->GetDecision(
1119 *sync_buffer_, *expand_, decoder_frame_length_, header, last_mode_,
1120 *play_dtmf, generated_noise_samples, &reset_decoder_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001121
1122 // Check if we already have enough samples in the |sync_buffer_|. If so,
1123 // change decision to normal, unless the decision was merge, accelerate, or
1124 // preemptive expand.
Peter Kastingdce40cf2015-08-24 14:52:23 -07001125 if (samples_left >= rtc::checked_cast<int>(output_size_samples_) &&
1126 *operation != kMerge &&
1127 *operation != kAccelerate &&
1128 *operation != kFastAccelerate &&
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001129 *operation != kPreemptiveExpand) {
1130 *operation = kNormal;
1131 return 0;
1132 }
1133
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +00001134 decision_logic_->ExpandDecision(*operation);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001135
1136 // Check conditions for reset.
1137 if (new_codec_ || *operation == kUndefined) {
1138 // The only valid reason to get kUndefined is that new_codec_ is set.
1139 assert(new_codec_);
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001140 if (*play_dtmf && !header) {
1141 timestamp_ = dtmf_event->timestamp;
1142 } else {
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001143 if (!header) {
Henrik Lundind67a2192015-08-03 12:54:37 +02001144 LOG(LS_ERROR) << "Packet missing where it shouldn't.";
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001145 return -1;
1146 }
1147 timestamp_ = header->timestamp;
1148 if (*operation == kRfc3389CngNoPacket
1149#ifndef LEGACY_BITEXACT
1150 // Without this check, it can happen that a non-CNG packet is sent to
1151 // the CNG decoder as if it was a SID frame. This is clearly a bug,
1152 // but is kept for now to maintain bit-exactness with the test
1153 // vectors.
1154 && decoder_database_->IsComfortNoise(header->payloadType)
1155#endif
1156 ) {
1157 // Change decision to CNG packet, since we do have a CNG packet, but it
1158 // was considered too early to use. Now, use it anyway.
1159 *operation = kRfc3389Cng;
1160 } else if (*operation != kRfc3389Cng) {
1161 *operation = kNormal;
1162 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001163 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001164 // Adjust |sync_buffer_| timestamp before setting |end_timestamp| to the
1165 // new value.
1166 sync_buffer_->IncreaseEndTimestamp(timestamp_ - end_timestamp);
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001167 end_timestamp = timestamp_;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001168 new_codec_ = false;
1169 decision_logic_->SoftReset();
1170 buffer_level_filter_->Reset();
1171 delay_manager_->Reset();
1172 stats_.ResetMcu();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001173 }
1174
Peter Kastingdce40cf2015-08-24 14:52:23 -07001175 size_t required_samples = output_size_samples_;
1176 const size_t samples_10_ms = static_cast<size_t>(80 * fs_mult_);
1177 const size_t samples_20_ms = 2 * samples_10_ms;
1178 const size_t samples_30_ms = 3 * samples_10_ms;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001179
1180 switch (*operation) {
1181 case kExpand: {
1182 timestamp_ = end_timestamp;
1183 return 0;
1184 }
1185 case kRfc3389CngNoPacket:
1186 case kCodecInternalCng: {
1187 return 0;
1188 }
1189 case kDtmf: {
1190 // TODO(hlundin): Write test for this.
1191 // Update timestamp.
1192 timestamp_ = end_timestamp;
henrik.lundinb1fb72b2016-05-03 08:18:47 -07001193 const uint64_t generated_noise_samples =
1194 generated_noise_stopwatch_
1195 ? generated_noise_stopwatch_->ElapsedTicks() *
1196 output_size_samples_ +
1197 decision_logic_->noise_fast_forward()
1198 : 0;
1199 if (generated_noise_samples > 0 && last_mode_ != kModeDtmf) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001200 // Make a jump in timestamp due to the recently played comfort noise.
Peter Kastingb7e50542015-06-11 12:55:50 -07001201 uint32_t timestamp_jump =
henrik.lundinb1fb72b2016-05-03 08:18:47 -07001202 static_cast<uint32_t>(generated_noise_samples);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001203 sync_buffer_->IncreaseEndTimestamp(timestamp_jump);
1204 timestamp_ += timestamp_jump;
1205 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001206 return 0;
1207 }
Henrik Lundincf808d22015-05-27 14:33:29 +02001208 case kAccelerate:
1209 case kFastAccelerate: {
1210 // In order to do an accelerate we need at least 30 ms of audio data.
Peter Kastingdce40cf2015-08-24 14:52:23 -07001211 if (samples_left >= static_cast<int>(samples_30_ms)) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001212 // Already have enough data, so we do not need to extract any more.
1213 decision_logic_->set_sample_memory(samples_left);
1214 decision_logic_->set_prev_time_scale(true);
1215 return 0;
Peter Kastingdce40cf2015-08-24 14:52:23 -07001216 } else if (samples_left >= static_cast<int>(samples_10_ms) &&
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001217 decoder_frame_length_ >= samples_30_ms) {
1218 // Avoid decoding more data as it might overflow the playout buffer.
1219 *operation = kNormal;
1220 return 0;
Peter Kastingdce40cf2015-08-24 14:52:23 -07001221 } else if (samples_left < static_cast<int>(samples_20_ms) &&
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001222 decoder_frame_length_ < samples_30_ms) {
1223 // Build up decoded data by decoding at least 20 ms of audio data. Do
1224 // not perform accelerate yet, but wait until we only need to do one
1225 // decoding.
1226 required_samples = 2 * output_size_samples_;
1227 *operation = kNormal;
1228 }
1229 // If none of the above is true, we have one of two possible situations:
1230 // (1) 20 ms <= samples_left < 30 ms and decoder_frame_length_ < 30 ms; or
1231 // (2) samples_left < 10 ms and decoder_frame_length_ >= 30 ms.
1232 // In either case, we move on with the accelerate decision, and decode one
1233 // frame now.
1234 break;
1235 }
1236 case kPreemptiveExpand: {
1237 // In order to do a preemptive expand we need at least 30 ms of decoded
1238 // audio data.
Peter Kastingdce40cf2015-08-24 14:52:23 -07001239 if ((samples_left >= static_cast<int>(samples_30_ms)) ||
1240 (samples_left >= static_cast<int>(samples_10_ms) &&
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001241 decoder_frame_length_ >= samples_30_ms)) {
1242 // Already have enough data, so we do not need to extract any more.
1243 // Or, avoid decoding more data as it might overflow the playout buffer.
1244 // Still try preemptive expand, though.
1245 decision_logic_->set_sample_memory(samples_left);
1246 decision_logic_->set_prev_time_scale(true);
1247 return 0;
1248 }
Peter Kastingdce40cf2015-08-24 14:52:23 -07001249 if (samples_left < static_cast<int>(samples_20_ms) &&
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001250 decoder_frame_length_ < samples_30_ms) {
1251 // Build up decoded data by decoding at least 20 ms of audio data.
1252 // Still try to perform preemptive expand.
1253 required_samples = 2 * output_size_samples_;
1254 }
1255 // Move on with the preemptive expand decision.
1256 break;
1257 }
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +00001258 case kMerge: {
1259 required_samples =
1260 std::max(merge_->RequiredFutureSamples(), required_samples);
1261 break;
1262 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001263 default: {
1264 // Do nothing.
1265 }
1266 }
1267
1268 // Get packets from buffer.
1269 int extracted_samples = 0;
1270 if (header &&
1271 *operation != kAlternativePlc &&
1272 *operation != kAlternativePlcIncreaseTimestamp &&
1273 *operation != kAudioRepetition &&
1274 *operation != kAudioRepetitionIncreaseTimestamp) {
1275 sync_buffer_->IncreaseEndTimestamp(header->timestamp - end_timestamp);
1276 if (decision_logic_->CngOff()) {
1277 // Adjustment of timestamp only corresponds to an actual packet loss
1278 // if comfort noise is not played. If comfort noise was just played,
1279 // this adjustment of timestamp is only done to get back in sync with the
1280 // stream timestamp; no loss to report.
1281 stats_.LostSamples(header->timestamp - end_timestamp);
1282 }
1283
1284 if (*operation != kRfc3389Cng) {
1285 // We are about to decode and use a non-CNG packet.
1286 decision_logic_->SetCngOff();
1287 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001288
1289 extracted_samples = ExtractPackets(required_samples, packet_list);
1290 if (extracted_samples < 0) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001291 return kPacketBufferCorruption;
1292 }
1293 }
1294
Henrik Lundincf808d22015-05-27 14:33:29 +02001295 if (*operation == kAccelerate || *operation == kFastAccelerate ||
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001296 *operation == kPreemptiveExpand) {
1297 decision_logic_->set_sample_memory(samples_left + extracted_samples);
1298 decision_logic_->set_prev_time_scale(true);
1299 }
1300
Henrik Lundincf808d22015-05-27 14:33:29 +02001301 if (*operation == kAccelerate || *operation == kFastAccelerate) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001302 // Check that we have enough data (30ms) to do accelerate.
Peter Kastingdce40cf2015-08-24 14:52:23 -07001303 if (extracted_samples + samples_left < static_cast<int>(samples_30_ms)) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001304 // TODO(hlundin): Write test for this.
1305 // Not enough, do normal operation instead.
1306 *operation = kNormal;
1307 }
1308 }
1309
1310 timestamp_ = end_timestamp;
1311 return 0;
1312}
1313
1314int NetEqImpl::Decode(PacketList* packet_list, Operations* operation,
1315 int* decoded_length,
1316 AudioDecoder::SpeechType* speech_type) {
1317 *speech_type = AudioDecoder::kSpeech;
minyuel6d92bf52015-09-23 15:20:39 +02001318
1319 // When packet_list is empty, we may be in kCodecInternalCng mode, and for
1320 // that we use current active decoder.
1321 AudioDecoder* decoder = decoder_database_->GetActiveDecoder();
1322
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001323 if (!packet_list->empty()) {
1324 const Packet* packet = packet_list->front();
pkasting@chromium.org0e81fdf2015-02-02 23:54:03 +00001325 uint8_t payload_type = packet->header.payloadType;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001326 if (!decoder_database_->IsComfortNoise(payload_type)) {
1327 decoder = decoder_database_->GetDecoder(payload_type);
1328 assert(decoder);
1329 if (!decoder) {
Henrik Lundind67a2192015-08-03 12:54:37 +02001330 LOG(LS_WARNING) << "Unknown payload type "
1331 << static_cast<int>(payload_type);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001332 PacketBuffer::DeleteAllPackets(packet_list);
1333 return kDecoderNotFound;
1334 }
1335 bool decoder_changed;
1336 decoder_database_->SetActiveDecoder(payload_type, &decoder_changed);
1337 if (decoder_changed) {
1338 // We have a new decoder. Re-init some values.
1339 const DecoderDatabase::DecoderInfo* decoder_info = decoder_database_
1340 ->GetDecoderInfo(payload_type);
1341 assert(decoder_info);
1342 if (!decoder_info) {
Henrik Lundind67a2192015-08-03 12:54:37 +02001343 LOG(LS_WARNING) << "Unknown payload type "
1344 << static_cast<int>(payload_type);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001345 PacketBuffer::DeleteAllPackets(packet_list);
1346 return kDecoderNotFound;
1347 }
tina.legrand@webrtc.orgba5a6c32014-03-23 09:58:48 +00001348 // If sampling rate or number of channels has changed, we need to make
1349 // a reset.
turaj@webrtc.orga6101d72013-10-01 22:01:09 +00001350 if (decoder_info->fs_hz != fs_hz_ ||
henrik.lundin@webrtc.org6dba1eb2015-03-18 09:47:08 +00001351 decoder->Channels() != algorithm_buffer_->Channels()) {
tina.legrand@webrtc.orgba5a6c32014-03-23 09:58:48 +00001352 // TODO(tlegrand): Add unittest to cover this event.
henrik.lundin@webrtc.org6dba1eb2015-03-18 09:47:08 +00001353 SetSampleRateAndChannels(decoder_info->fs_hz, decoder->Channels());
turaj@webrtc.orga6101d72013-10-01 22:01:09 +00001354 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001355 sync_buffer_->set_end_timestamp(timestamp_);
1356 playout_timestamp_ = timestamp_;
1357 }
1358 }
1359 }
1360
1361 if (reset_decoder_) {
1362 // TODO(hlundin): Write test for this.
Karl Wiberg43766482015-08-27 15:22:11 +02001363 if (decoder)
1364 decoder->Reset();
1365
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001366 // Reset comfort noise decoder.
ossu97ba30e2016-04-25 07:55:58 -07001367 ComfortNoiseDecoder* cng_decoder = decoder_database_->GetActiveCngDecoder();
Karl Wiberg43766482015-08-27 15:22:11 +02001368 if (cng_decoder)
1369 cng_decoder->Reset();
1370
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001371 reset_decoder_ = false;
1372 }
1373
1374#ifdef LEGACY_BITEXACT
1375 // Due to a bug in old SignalMCU, it could happen that CNG operation was
1376 // decided, but a speech packet was provided. The speech packet will be used
1377 // to update the comfort noise decoder, as if it was a SID frame, which is
1378 // clearly wrong.
1379 if (*operation == kRfc3389Cng) {
1380 return 0;
1381 }
1382#endif
1383
1384 *decoded_length = 0;
1385 // Update codec-internal PLC state.
1386 if ((*operation == kMerge) && decoder && decoder->HasDecodePlc()) {
1387 decoder->DecodePlc(1, &decoded_buffer_[*decoded_length]);
1388 }
1389
minyuel6d92bf52015-09-23 15:20:39 +02001390 int return_value;
1391 if (*operation == kCodecInternalCng) {
1392 RTC_DCHECK(packet_list->empty());
1393 return_value = DecodeCng(decoder, decoded_length, speech_type);
1394 } else {
1395 return_value = DecodeLoop(packet_list, *operation, decoder,
1396 decoded_length, speech_type);
1397 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001398
1399 if (*decoded_length < 0) {
1400 // Error returned from the decoder.
1401 *decoded_length = 0;
Peter Kastingb7e50542015-06-11 12:55:50 -07001402 sync_buffer_->IncreaseEndTimestamp(
1403 static_cast<uint32_t>(decoder_frame_length_));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001404 int error_code = 0;
1405 if (decoder)
1406 error_code = decoder->ErrorCode();
1407 if (error_code != 0) {
1408 // Got some error code from the decoder.
1409 decoder_error_code_ = error_code;
1410 return_value = kDecoderErrorCode;
Henrik Lundind67a2192015-08-03 12:54:37 +02001411 LOG(LS_WARNING) << "Decoder returned error code: " << error_code;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001412 } else {
1413 // Decoder does not implement error codes. Return generic error.
1414 return_value = kOtherDecoderError;
Henrik Lundind67a2192015-08-03 12:54:37 +02001415 LOG(LS_WARNING) << "Decoder error (no error code)";
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001416 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001417 *operation = kExpand; // Do expansion to get data instead.
1418 }
1419 if (*speech_type != AudioDecoder::kComfortNoise) {
1420 // Don't increment timestamp if codec returned CNG speech type
1421 // since in this case, the we will increment the CNGplayedTS counter.
1422 // Increase with number of samples per channel.
1423 assert(*decoded_length == 0 ||
henrik.lundin@webrtc.org6dba1eb2015-03-18 09:47:08 +00001424 (decoder && decoder->Channels() == sync_buffer_->Channels()));
turaj@webrtc.org362a55e2013-09-20 16:25:28 +00001425 sync_buffer_->IncreaseEndTimestamp(
1426 *decoded_length / static_cast<int>(sync_buffer_->Channels()));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001427 }
1428 return return_value;
1429}
1430
minyuel6d92bf52015-09-23 15:20:39 +02001431int NetEqImpl::DecodeCng(AudioDecoder* decoder, int* decoded_length,
1432 AudioDecoder::SpeechType* speech_type) {
1433 if (!decoder) {
1434 // This happens when active decoder is not defined.
1435 *decoded_length = -1;
1436 return 0;
1437 }
1438
1439 while (*decoded_length < rtc::checked_cast<int>(output_size_samples_)) {
1440 const int length = decoder->Decode(
1441 nullptr, 0, fs_hz_,
1442 (decoded_buffer_length_ - *decoded_length) * sizeof(int16_t),
1443 &decoded_buffer_[*decoded_length], speech_type);
1444 if (length > 0) {
1445 *decoded_length += length;
minyuel6d92bf52015-09-23 15:20:39 +02001446 } else {
1447 // Error.
1448 LOG(LS_WARNING) << "Failed to decode CNG";
1449 *decoded_length = -1;
1450 break;
1451 }
1452 if (*decoded_length > static_cast<int>(decoded_buffer_length_)) {
1453 // Guard against overflow.
1454 LOG(LS_WARNING) << "Decoded too much CNG.";
1455 return kDecodedTooMuch;
1456 }
1457 }
1458 return 0;
1459}
1460
1461int NetEqImpl::DecodeLoop(PacketList* packet_list, const Operations& operation,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001462 AudioDecoder* decoder, int* decoded_length,
1463 AudioDecoder::SpeechType* speech_type) {
1464 Packet* packet = NULL;
1465 if (!packet_list->empty()) {
1466 packet = packet_list->front();
1467 }
minyuel6d92bf52015-09-23 15:20:39 +02001468
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001469 // Do decoding.
1470 while (packet &&
1471 !decoder_database_->IsComfortNoise(packet->header.payloadType)) {
1472 assert(decoder); // At this point, we must have a decoder object.
1473 // The number of channels in the |sync_buffer_| should be the same as the
1474 // number decoder channels.
henrik.lundin@webrtc.org6dba1eb2015-03-18 09:47:08 +00001475 assert(sync_buffer_->Channels() == decoder->Channels());
1476 assert(decoded_buffer_length_ >= kMaxFrameSize * decoder->Channels());
minyuel6d92bf52015-09-23 15:20:39 +02001477 assert(operation == kNormal || operation == kAccelerate ||
1478 operation == kFastAccelerate || operation == kMerge ||
1479 operation == kPreemptiveExpand);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001480 packet_list->pop_front();
pkasting@chromium.org4591fbd2014-11-20 22:28:14 +00001481 size_t payload_length = packet->payload_length;
Peter Kasting36b7cc32015-06-11 19:57:18 -07001482 int decode_length;
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +00001483 if (packet->sync_packet) {
1484 // Decode to silence with the same frame size as the last decode.
henrik.lundin@webrtc.org6dba1eb2015-03-18 09:47:08 +00001485 memset(&decoded_buffer_[*decoded_length], 0,
1486 decoder_frame_length_ * decoder->Channels() *
1487 sizeof(decoded_buffer_[0]));
Peter Kastingdce40cf2015-08-24 14:52:23 -07001488 decode_length = rtc::checked_cast<int>(decoder_frame_length_);
turaj@webrtc.org7b75ac62013-09-26 00:27:56 +00001489 } else if (!packet->primary) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001490 // This is a redundant payload; call the special decoder method.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001491 decode_length = decoder->DecodeRedundant(
henrik.lundin@webrtc.org1eda4e32015-02-25 10:02:29 +00001492 packet->payload, packet->payload_length, fs_hz_,
minyue@webrtc.org7f7d7e32015-03-16 12:30:37 +00001493 (decoded_buffer_length_ - *decoded_length) * sizeof(int16_t),
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001494 &decoded_buffer_[*decoded_length], speech_type);
1495 } else {
henrik.lundin@webrtc.org1eda4e32015-02-25 10:02:29 +00001496 decode_length =
minyue@webrtc.org7f7d7e32015-03-16 12:30:37 +00001497 decoder->Decode(
1498 packet->payload, packet->payload_length, fs_hz_,
1499 (decoded_buffer_length_ - *decoded_length) * sizeof(int16_t),
1500 &decoded_buffer_[*decoded_length], speech_type);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001501 }
1502
1503 delete[] packet->payload;
1504 delete packet;
turaj@webrtc.org58cd3162013-10-31 15:15:55 +00001505 packet = NULL;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001506 if (decode_length > 0) {
1507 *decoded_length += decode_length;
1508 // Update |decoder_frame_length_| with number of samples per channel.
henrik.lundin@webrtc.org6dba1eb2015-03-18 09:47:08 +00001509 decoder_frame_length_ =
Peter Kastingdce40cf2015-08-24 14:52:23 -07001510 static_cast<size_t>(decode_length) / decoder->Channels();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001511 } else if (decode_length < 0) {
1512 // Error.
Henrik Lundind67a2192015-08-03 12:54:37 +02001513 LOG(LS_WARNING) << "Decode " << decode_length << " " << payload_length;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001514 *decoded_length = -1;
1515 PacketBuffer::DeleteAllPackets(packet_list);
1516 break;
1517 }
1518 if (*decoded_length > static_cast<int>(decoded_buffer_length_)) {
1519 // Guard against overflow.
Henrik Lundind67a2192015-08-03 12:54:37 +02001520 LOG(LS_WARNING) << "Decoded too much.";
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001521 PacketBuffer::DeleteAllPackets(packet_list);
1522 return kDecodedTooMuch;
1523 }
1524 if (!packet_list->empty()) {
1525 packet = packet_list->front();
1526 } else {
1527 packet = NULL;
1528 }
1529 } // End of decode loop.
1530
turaj@webrtc.org58cd3162013-10-31 15:15:55 +00001531 // If the list is not empty at this point, either a decoding error terminated
1532 // the while-loop, or list must hold exactly one CNG packet.
1533 assert(packet_list->empty() || *decoded_length < 0 ||
1534 (packet_list->size() == 1 && packet &&
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001535 decoder_database_->IsComfortNoise(packet->header.payloadType)));
1536 return 0;
1537}
1538
1539void NetEqImpl::DoNormal(const int16_t* decoded_buffer, size_t decoded_length,
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001540 AudioDecoder::SpeechType speech_type, bool play_dtmf) {
henrik.lundin@webrtc.org40d3fc62013-09-18 12:19:50 +00001541 assert(normal_.get());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001542 assert(mute_factor_array_.get());
henrik.lundin@webrtc.org40d3fc62013-09-18 12:19:50 +00001543 normal_->Process(decoded_buffer, decoded_length, last_mode_,
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00001544 mute_factor_array_.get(), algorithm_buffer_.get());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001545 if (decoded_length != 0) {
1546 last_mode_ = kModeNormal;
1547 }
1548
1549 // If last packet was decoded as an inband CNG, set mode to CNG instead.
1550 if ((speech_type == AudioDecoder::kComfortNoise)
1551 || ((last_mode_ == kModeCodecInternalCng)
1552 && (decoded_length == 0))) {
1553 // TODO(hlundin): Remove second part of || statement above.
1554 last_mode_ = kModeCodecInternalCng;
1555 }
1556
1557 if (!play_dtmf) {
1558 dtmf_tone_generator_->Reset();
1559 }
1560}
1561
1562void NetEqImpl::DoMerge(int16_t* decoded_buffer, size_t decoded_length,
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001563 AudioDecoder::SpeechType speech_type, bool play_dtmf) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001564 assert(mute_factor_array_.get());
henrik.lundin@webrtc.org40d3fc62013-09-18 12:19:50 +00001565 assert(merge_.get());
Peter Kastingdce40cf2015-08-24 14:52:23 -07001566 size_t new_length = merge_->Process(decoded_buffer, decoded_length,
1567 mute_factor_array_.get(),
1568 algorithm_buffer_.get());
1569 size_t expand_length_correction = new_length -
1570 decoded_length / algorithm_buffer_->Channels();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001571
1572 // Update in-call and post-call statistics.
1573 if (expand_->MuteFactor(0) == 0) {
1574 // Expand generates only noise.
minyue@webrtc.orgc11348b2015-02-10 08:35:38 +00001575 stats_.ExpandedNoiseSamples(expand_length_correction);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001576 } else {
1577 // Expansion generates more than only noise.
minyue@webrtc.orgc11348b2015-02-10 08:35:38 +00001578 stats_.ExpandedVoiceSamples(expand_length_correction);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001579 }
1580
1581 last_mode_ = kModeMerge;
1582 // If last packet was decoded as an inband CNG, set mode to CNG instead.
1583 if (speech_type == AudioDecoder::kComfortNoise) {
1584 last_mode_ = kModeCodecInternalCng;
1585 }
1586 expand_->Reset();
1587 if (!play_dtmf) {
1588 dtmf_tone_generator_->Reset();
1589 }
1590}
1591
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001592int NetEqImpl::DoExpand(bool play_dtmf) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001593 while ((sync_buffer_->FutureLength() - expand_->overlap_length()) <
Peter Kastingdce40cf2015-08-24 14:52:23 -07001594 output_size_samples_) {
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001595 algorithm_buffer_->Clear();
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00001596 int return_value = expand_->Process(algorithm_buffer_.get());
Peter Kastingdce40cf2015-08-24 14:52:23 -07001597 size_t length = algorithm_buffer_->Size();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001598
1599 // Update in-call and post-call statistics.
1600 if (expand_->MuteFactor(0) == 0) {
1601 // Expand operation generates only noise.
1602 stats_.ExpandedNoiseSamples(length);
1603 } else {
1604 // Expand operation generates more than only noise.
1605 stats_.ExpandedVoiceSamples(length);
1606 }
1607
1608 last_mode_ = kModeExpand;
1609
1610 if (return_value < 0) {
1611 return return_value;
1612 }
1613
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001614 sync_buffer_->PushBack(*algorithm_buffer_);
1615 algorithm_buffer_->Clear();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001616 }
1617 if (!play_dtmf) {
1618 dtmf_tone_generator_->Reset();
1619 }
henrik.lundinb1fb72b2016-05-03 08:18:47 -07001620
1621 if (!generated_noise_stopwatch_) {
1622 // Start a new stopwatch since we may be covering for a lost CNG packet.
1623 generated_noise_stopwatch_ = tick_timer_->GetNewStopwatch();
1624 }
1625
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001626 return 0;
1627}
1628
Henrik Lundincf808d22015-05-27 14:33:29 +02001629int NetEqImpl::DoAccelerate(int16_t* decoded_buffer,
1630 size_t decoded_length,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001631 AudioDecoder::SpeechType speech_type,
Henrik Lundincf808d22015-05-27 14:33:29 +02001632 bool play_dtmf,
1633 bool fast_accelerate) {
Peter Kastingdce40cf2015-08-24 14:52:23 -07001634 const size_t required_samples =
1635 static_cast<size_t>(240 * fs_mult_); // Must have 30 ms.
turaj@webrtc.org362a55e2013-09-20 16:25:28 +00001636 size_t borrowed_samples_per_channel = 0;
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001637 size_t num_channels = algorithm_buffer_->Channels();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001638 size_t decoded_length_per_channel = decoded_length / num_channels;
1639 if (decoded_length_per_channel < required_samples) {
1640 // Must move data from the |sync_buffer_| in order to get 30 ms.
turaj@webrtc.org362a55e2013-09-20 16:25:28 +00001641 borrowed_samples_per_channel = static_cast<int>(required_samples -
1642 decoded_length_per_channel);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001643 memmove(&decoded_buffer[borrowed_samples_per_channel * num_channels],
1644 decoded_buffer,
1645 sizeof(int16_t) * decoded_length);
1646 sync_buffer_->ReadInterleavedFromEnd(borrowed_samples_per_channel,
1647 decoded_buffer);
1648 decoded_length = required_samples * num_channels;
1649 }
1650
Peter Kastingdce40cf2015-08-24 14:52:23 -07001651 size_t samples_removed;
Henrik Lundincf808d22015-05-27 14:33:29 +02001652 Accelerate::ReturnCodes return_code =
1653 accelerate_->Process(decoded_buffer, decoded_length, fast_accelerate,
1654 algorithm_buffer_.get(), &samples_removed);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001655 stats_.AcceleratedSamples(samples_removed);
1656 switch (return_code) {
1657 case Accelerate::kSuccess:
1658 last_mode_ = kModeAccelerateSuccess;
1659 break;
1660 case Accelerate::kSuccessLowEnergy:
1661 last_mode_ = kModeAccelerateLowEnergy;
1662 break;
1663 case Accelerate::kNoStretch:
1664 last_mode_ = kModeAccelerateFail;
1665 break;
1666 case Accelerate::kError:
1667 // TODO(hlundin): Map to kModeError instead?
1668 last_mode_ = kModeAccelerateFail;
1669 return kAccelerateError;
1670 }
1671
1672 if (borrowed_samples_per_channel > 0) {
1673 // Copy borrowed samples back to the |sync_buffer_|.
turaj@webrtc.org362a55e2013-09-20 16:25:28 +00001674 size_t length = algorithm_buffer_->Size();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001675 if (length < borrowed_samples_per_channel) {
1676 // This destroys the beginning of the buffer, but will not cause any
1677 // problems.
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001678 sync_buffer_->ReplaceAtIndex(*algorithm_buffer_,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001679 sync_buffer_->Size() -
1680 borrowed_samples_per_channel);
1681 sync_buffer_->PushFrontZeros(borrowed_samples_per_channel - length);
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001682 algorithm_buffer_->PopFront(length);
1683 assert(algorithm_buffer_->Empty());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001684 } else {
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001685 sync_buffer_->ReplaceAtIndex(*algorithm_buffer_,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001686 borrowed_samples_per_channel,
1687 sync_buffer_->Size() -
1688 borrowed_samples_per_channel);
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001689 algorithm_buffer_->PopFront(borrowed_samples_per_channel);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001690 }
1691 }
1692
1693 // If last packet was decoded as an inband CNG, set mode to CNG instead.
1694 if (speech_type == AudioDecoder::kComfortNoise) {
1695 last_mode_ = kModeCodecInternalCng;
1696 }
1697 if (!play_dtmf) {
1698 dtmf_tone_generator_->Reset();
1699 }
1700 expand_->Reset();
1701 return 0;
1702}
1703
1704int NetEqImpl::DoPreemptiveExpand(int16_t* decoded_buffer,
1705 size_t decoded_length,
1706 AudioDecoder::SpeechType speech_type,
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001707 bool play_dtmf) {
Peter Kastingdce40cf2015-08-24 14:52:23 -07001708 const size_t required_samples =
1709 static_cast<size_t>(240 * fs_mult_); // Must have 30 ms.
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001710 size_t num_channels = algorithm_buffer_->Channels();
Peter Kastingdce40cf2015-08-24 14:52:23 -07001711 size_t borrowed_samples_per_channel = 0;
1712 size_t old_borrowed_samples_per_channel = 0;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001713 size_t decoded_length_per_channel = decoded_length / num_channels;
1714 if (decoded_length_per_channel < required_samples) {
1715 // Must move data from the |sync_buffer_| in order to get 30 ms.
Peter Kastingdce40cf2015-08-24 14:52:23 -07001716 borrowed_samples_per_channel =
1717 required_samples - decoded_length_per_channel;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001718 // Calculate how many of these were already played out.
Peter Kastingf045e4d2015-06-10 21:15:38 -07001719 old_borrowed_samples_per_channel =
Peter Kastingdce40cf2015-08-24 14:52:23 -07001720 (borrowed_samples_per_channel > sync_buffer_->FutureLength()) ?
1721 (borrowed_samples_per_channel - sync_buffer_->FutureLength()) : 0;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001722 memmove(&decoded_buffer[borrowed_samples_per_channel * num_channels],
1723 decoded_buffer,
1724 sizeof(int16_t) * decoded_length);
1725 sync_buffer_->ReadInterleavedFromEnd(borrowed_samples_per_channel,
1726 decoded_buffer);
1727 decoded_length = required_samples * num_channels;
1728 }
1729
Peter Kastingdce40cf2015-08-24 14:52:23 -07001730 size_t samples_added;
henrik.lundin@webrtc.org40d3fc62013-09-18 12:19:50 +00001731 PreemptiveExpand::ReturnCodes return_code = preemptive_expand_->Process(
Peter Kastingdce40cf2015-08-24 14:52:23 -07001732 decoded_buffer, decoded_length,
turaj@webrtc.org362a55e2013-09-20 16:25:28 +00001733 old_borrowed_samples_per_channel,
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00001734 algorithm_buffer_.get(), &samples_added);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001735 stats_.PreemptiveExpandedSamples(samples_added);
1736 switch (return_code) {
1737 case PreemptiveExpand::kSuccess:
1738 last_mode_ = kModePreemptiveExpandSuccess;
1739 break;
1740 case PreemptiveExpand::kSuccessLowEnergy:
1741 last_mode_ = kModePreemptiveExpandLowEnergy;
1742 break;
1743 case PreemptiveExpand::kNoStretch:
1744 last_mode_ = kModePreemptiveExpandFail;
1745 break;
1746 case PreemptiveExpand::kError:
1747 // TODO(hlundin): Map to kModeError instead?
1748 last_mode_ = kModePreemptiveExpandFail;
1749 return kPreemptiveExpandError;
1750 }
1751
1752 if (borrowed_samples_per_channel > 0) {
1753 // Copy borrowed samples back to the |sync_buffer_|.
1754 sync_buffer_->ReplaceAtIndex(
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001755 *algorithm_buffer_, borrowed_samples_per_channel,
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001756 sync_buffer_->Size() - borrowed_samples_per_channel);
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001757 algorithm_buffer_->PopFront(borrowed_samples_per_channel);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001758 }
1759
1760 // If last packet was decoded as an inband CNG, set mode to CNG instead.
1761 if (speech_type == AudioDecoder::kComfortNoise) {
1762 last_mode_ = kModeCodecInternalCng;
1763 }
1764 if (!play_dtmf) {
1765 dtmf_tone_generator_->Reset();
1766 }
1767 expand_->Reset();
1768 return 0;
1769}
1770
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001771int NetEqImpl::DoRfc3389Cng(PacketList* packet_list, bool play_dtmf) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001772 if (!packet_list->empty()) {
1773 // Must have exactly one SID frame at this point.
1774 assert(packet_list->size() == 1);
1775 Packet* packet = packet_list->front();
1776 packet_list->pop_front();
henrik.lundin@webrtc.org73deaad2013-01-31 13:32:51 +00001777 if (!decoder_database_->IsComfortNoise(packet->header.payloadType)) {
1778#ifdef LEGACY_BITEXACT
1779 // This can happen due to a bug in GetDecision. Change the payload type
1780 // to a CNG type, and move on. Note that this means that we are in fact
1781 // sending a non-CNG payload to the comfort noise decoder for decoding.
1782 // Clearly wrong, but will maintain bit-exactness with legacy.
1783 if (fs_hz_ == 8000) {
1784 packet->header.payloadType =
kwibergee1879c2015-10-29 06:20:28 -07001785 decoder_database_->GetRtpPayloadType(NetEqDecoder::kDecoderCNGnb);
henrik.lundin@webrtc.org73deaad2013-01-31 13:32:51 +00001786 } else if (fs_hz_ == 16000) {
1787 packet->header.payloadType =
kwibergee1879c2015-10-29 06:20:28 -07001788 decoder_database_->GetRtpPayloadType(NetEqDecoder::kDecoderCNGwb);
henrik.lundin@webrtc.org73deaad2013-01-31 13:32:51 +00001789 } else if (fs_hz_ == 32000) {
kwibergee1879c2015-10-29 06:20:28 -07001790 packet->header.payloadType = decoder_database_->GetRtpPayloadType(
1791 NetEqDecoder::kDecoderCNGswb32kHz);
henrik.lundin@webrtc.org73deaad2013-01-31 13:32:51 +00001792 } else if (fs_hz_ == 48000) {
kwibergee1879c2015-10-29 06:20:28 -07001793 packet->header.payloadType = decoder_database_->GetRtpPayloadType(
1794 NetEqDecoder::kDecoderCNGswb48kHz);
henrik.lundin@webrtc.org73deaad2013-01-31 13:32:51 +00001795 }
1796 assert(decoder_database_->IsComfortNoise(packet->header.payloadType));
1797#else
1798 LOG(LS_ERROR) << "Trying to decode non-CNG payload as CNG.";
1799 return kOtherError;
1800#endif
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001801 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001802 // UpdateParameters() deletes |packet|.
1803 if (comfort_noise_->UpdateParameters(packet) ==
1804 ComfortNoise::kInternalError) {
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001805 algorithm_buffer_->Zeros(output_size_samples_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001806 return -comfort_noise_->internal_error_code();
1807 }
1808 }
1809 int cn_return = comfort_noise_->Generate(output_size_samples_,
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00001810 algorithm_buffer_.get());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001811 expand_->Reset();
1812 last_mode_ = kModeRfc3389Cng;
1813 if (!play_dtmf) {
1814 dtmf_tone_generator_->Reset();
1815 }
1816 if (cn_return == ComfortNoise::kInternalError) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001817 decoder_error_code_ = comfort_noise_->internal_error_code();
1818 return kComfortNoiseErrorCode;
1819 } else if (cn_return == ComfortNoise::kUnknownPayloadType) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001820 return kUnknownRtpPayloadType;
1821 }
1822 return 0;
1823}
1824
minyuel6d92bf52015-09-23 15:20:39 +02001825void NetEqImpl::DoCodecInternalCng(const int16_t* decoded_buffer,
1826 size_t decoded_length) {
1827 RTC_DCHECK(normal_.get());
1828 RTC_DCHECK(mute_factor_array_.get());
1829 normal_->Process(decoded_buffer, decoded_length, last_mode_,
1830 mute_factor_array_.get(), algorithm_buffer_.get());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001831 last_mode_ = kModeCodecInternalCng;
1832 expand_->Reset();
1833}
1834
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001835int NetEqImpl::DoDtmf(const DtmfEvent& dtmf_event, bool* play_dtmf) {
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001836 // This block of the code and the block further down, handling |dtmf_switch|
1837 // are commented out. Otherwise playing out-of-band DTMF would fail in VoE
1838 // test, DtmfTest.ManualSuccessfullySendsOutOfBandTelephoneEvents. This is
1839 // equivalent to |dtmf_switch| always be false.
1840 //
1841 // See http://webrtc-codereview.appspot.com/1195004/ for discussion
1842 // On this issue. This change might cause some glitches at the point of
1843 // switch from audio to DTMF. Issue 1545 is filed to track this.
1844 //
1845 // bool dtmf_switch = false;
1846 // if ((last_mode_ != kModeDtmf) && dtmf_tone_generator_->initialized()) {
1847 // // Special case; see below.
1848 // // We must catch this before calling Generate, since |initialized| is
1849 // // modified in that call.
1850 // dtmf_switch = true;
1851 // }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001852
1853 int dtmf_return_value = 0;
1854 if (!dtmf_tone_generator_->initialized()) {
1855 // Initialize if not already done.
1856 dtmf_return_value = dtmf_tone_generator_->Init(fs_hz_, dtmf_event.event_no,
1857 dtmf_event.volume);
1858 }
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001859
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001860 if (dtmf_return_value == 0) {
1861 // Generate DTMF signal.
1862 dtmf_return_value = dtmf_tone_generator_->Generate(output_size_samples_,
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00001863 algorithm_buffer_.get());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001864 }
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001865
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001866 if (dtmf_return_value < 0) {
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001867 algorithm_buffer_->Zeros(output_size_samples_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001868 return dtmf_return_value;
1869 }
1870
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001871 // if (dtmf_switch) {
1872 // // This is the special case where the previous operation was DTMF
1873 // // overdub, but the current instruction is "regular" DTMF. We must make
1874 // // sure that the DTMF does not have any discontinuities. The first DTMF
1875 // // sample that we generate now must be played out immediately, therefore
1876 // // it must be copied to the speech buffer.
1877 // // TODO(hlundin): This code seems incorrect. (Legacy.) Write test and
1878 // // verify correct operation.
1879 // assert(false);
1880 // // Must generate enough data to replace all of the |sync_buffer_|
1881 // // "future".
1882 // int required_length = sync_buffer_->FutureLength();
1883 // assert(dtmf_tone_generator_->initialized());
1884 // dtmf_return_value = dtmf_tone_generator_->Generate(required_length,
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001885 // algorithm_buffer_);
1886 // assert((size_t) required_length == algorithm_buffer_->Size());
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001887 // if (dtmf_return_value < 0) {
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001888 // algorithm_buffer_->Zeros(output_size_samples_);
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001889 // return dtmf_return_value;
1890 // }
1891 //
1892 // // Overwrite the "future" part of the speech buffer with the new DTMF
1893 // // data.
1894 // // TODO(hlundin): It seems that this overwriting has gone lost.
1895 // // Not adapted for multi-channel yet.
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001896 // assert(algorithm_buffer_->Channels() == 1);
1897 // if (algorithm_buffer_->Channels() != 1) {
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001898 // LOG(LS_WARNING) << "DTMF not supported for more than one channel";
1899 // return kStereoNotSupported;
1900 // }
1901 // // Shuffle the remaining data to the beginning of algorithm buffer.
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001902 // algorithm_buffer_->PopFront(sync_buffer_->FutureLength());
turaj@webrtc.org4d06db52013-03-27 18:31:42 +00001903 // }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001904
Peter Kastingb7e50542015-06-11 12:55:50 -07001905 sync_buffer_->IncreaseEndTimestamp(
1906 static_cast<uint32_t>(output_size_samples_));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001907 expand_->Reset();
1908 last_mode_ = kModeDtmf;
1909
1910 // Set to false because the DTMF is already in the algorithm buffer.
1911 *play_dtmf = false;
1912 return 0;
1913}
1914
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001915void NetEqImpl::DoAlternativePlc(bool increase_timestamp) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001916 AudioDecoder* decoder = decoder_database_->GetActiveDecoder();
Peter Kastingdce40cf2015-08-24 14:52:23 -07001917 size_t length;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001918 if (decoder && decoder->HasDecodePlc()) {
1919 // Use the decoder's packet-loss concealment.
1920 // TODO(hlundin): Will probably need a longer buffer for multi-channel.
1921 int16_t decoded_buffer[kMaxFrameSize];
1922 length = decoder->DecodePlc(1, decoded_buffer);
Peter Kastingdce40cf2015-08-24 14:52:23 -07001923 if (length > 0)
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001924 algorithm_buffer_->PushBackInterleaved(decoded_buffer, length);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001925 } else {
1926 // Do simple zero-stuffing.
1927 length = output_size_samples_;
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00001928 algorithm_buffer_->Zeros(length);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001929 // By not advancing the timestamp, NetEq inserts samples.
1930 stats_.AddZeros(length);
1931 }
1932 if (increase_timestamp) {
Peter Kastingb7e50542015-06-11 12:55:50 -07001933 sync_buffer_->IncreaseEndTimestamp(static_cast<uint32_t>(length));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001934 }
1935 expand_->Reset();
1936}
1937
1938int NetEqImpl::DtmfOverdub(const DtmfEvent& dtmf_event, size_t num_channels,
1939 int16_t* output) const {
1940 size_t out_index = 0;
Peter Kastingdce40cf2015-08-24 14:52:23 -07001941 size_t overdub_length = output_size_samples_; // Default value.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001942
1943 if (sync_buffer_->dtmf_index() > sync_buffer_->next_index()) {
1944 // Special operation for transition from "DTMF only" to "DTMF overdub".
1945 out_index = std::min(
1946 sync_buffer_->dtmf_index() - sync_buffer_->next_index(),
Peter Kastingdce40cf2015-08-24 14:52:23 -07001947 output_size_samples_);
1948 overdub_length = output_size_samples_ - out_index;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001949 }
1950
henrik.lundin@webrtc.orgfd11bbf2013-09-30 20:38:44 +00001951 AudioMultiVector dtmf_output(num_channels);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001952 int dtmf_return_value = 0;
1953 if (!dtmf_tone_generator_->initialized()) {
1954 dtmf_return_value = dtmf_tone_generator_->Init(fs_hz_, dtmf_event.event_no,
1955 dtmf_event.volume);
1956 }
1957 if (dtmf_return_value == 0) {
1958 dtmf_return_value = dtmf_tone_generator_->Generate(overdub_length,
1959 &dtmf_output);
Peter Kastingdce40cf2015-08-24 14:52:23 -07001960 assert(overdub_length == dtmf_output.Size());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001961 }
1962 dtmf_output.ReadInterleaved(overdub_length, &output[out_index]);
1963 return dtmf_return_value < 0 ? dtmf_return_value : 0;
1964}
1965
Peter Kastingdce40cf2015-08-24 14:52:23 -07001966int NetEqImpl::ExtractPackets(size_t required_samples,
1967 PacketList* packet_list) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001968 bool first_packet = true;
1969 uint8_t prev_payload_type = 0;
1970 uint32_t prev_timestamp = 0;
1971 uint16_t prev_sequence_number = 0;
1972 bool next_packet_available = false;
1973
henrik.lundin@webrtc.orge1d468c2013-01-30 07:37:20 +00001974 const RTPHeader* header = packet_buffer_->NextRtpHeader();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001975 assert(header);
1976 if (!header) {
Henrik Lundind67a2192015-08-03 12:54:37 +02001977 LOG(LS_ERROR) << "Packet buffer unexpectedly empty.";
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001978 return -1;
1979 }
turaj@webrtc.org7df97062013-08-02 18:07:13 +00001980 uint32_t first_timestamp = header->timestamp;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001981 int extracted_samples = 0;
1982
1983 // Packet extraction loop.
1984 do {
1985 timestamp_ = header->timestamp;
Peter Kastingdce40cf2015-08-24 14:52:23 -07001986 size_t discard_count = 0;
henrik.lundin@webrtc.orge1d468c2013-01-30 07:37:20 +00001987 Packet* packet = packet_buffer_->GetNextPacket(&discard_count);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001988 // |header| may be invalid after the |packet_buffer_| operation.
1989 header = NULL;
1990 if (!packet) {
Henrik Lundind67a2192015-08-03 12:54:37 +02001991 LOG(LS_ERROR) << "Should always be able to extract a packet here";
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001992 assert(false); // Should always be able to extract a packet here.
1993 return -1;
1994 }
1995 stats_.PacketsDiscarded(discard_count);
henrik.lundin84f8cd62016-04-26 07:45:16 -07001996 stats_.StoreWaitingTime(packet->waiting_time->ElapsedMs());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001997 assert(packet->payload_length > 0);
1998 packet_list->push_back(packet); // Store packet in list.
1999
2000 if (first_packet) {
2001 first_packet = false;
henrik.lundin48ed9302015-10-29 05:36:24 -07002002 if (nack_enabled_) {
2003 RTC_DCHECK(nack_);
2004 // TODO(henrik.lundin): Should we update this for all decoded packets?
2005 nack_->UpdateLastDecodedPacket(packet->header.sequenceNumber,
2006 packet->header.timestamp);
2007 }
2008 prev_sequence_number = packet->header.sequenceNumber;
2009 prev_timestamp = packet->header.timestamp;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002010 prev_payload_type = packet->header.payloadType;
2011 }
2012
2013 // Store number of extracted samples.
2014 int packet_duration = 0;
2015 AudioDecoder* decoder = decoder_database_->GetDecoder(
2016 packet->header.payloadType);
2017 if (decoder) {
minyue@webrtc.orgb28bfa72014-03-21 12:07:40 +00002018 if (packet->sync_packet) {
Peter Kastingdce40cf2015-08-24 14:52:23 -07002019 packet_duration = rtc::checked_cast<int>(decoder_frame_length_);
minyue@webrtc.orgb28bfa72014-03-21 12:07:40 +00002020 } else {
minyue@webrtc.org2c1bcf22015-02-17 10:17:09 +00002021 if (packet->primary) {
2022 packet_duration = decoder->PacketDuration(packet->payload,
2023 packet->payload_length);
2024 } else {
2025 packet_duration = decoder->
2026 PacketDurationRedundant(packet->payload, packet->payload_length);
2027 stats_.SecondaryDecodedSamples(packet_duration);
2028 }
minyue@webrtc.orgb28bfa72014-03-21 12:07:40 +00002029 }
ossu97ba30e2016-04-25 07:55:58 -07002030 } else if (!decoder_database_->IsComfortNoise(packet->header.payloadType)) {
Henrik Lundind67a2192015-08-03 12:54:37 +02002031 LOG(LS_WARNING) << "Unknown payload type "
2032 << static_cast<int>(packet->header.payloadType);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002033 assert(false);
2034 }
2035 if (packet_duration <= 0) {
2036 // Decoder did not return a packet duration. Assume that the packet
2037 // contains the same number of samples as the previous one.
Peter Kastingdce40cf2015-08-24 14:52:23 -07002038 packet_duration = rtc::checked_cast<int>(decoder_frame_length_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002039 }
2040 extracted_samples = packet->header.timestamp - first_timestamp +
2041 packet_duration;
2042
2043 // Check what packet is available next.
2044 header = packet_buffer_->NextRtpHeader();
2045 next_packet_available = false;
2046 if (header && prev_payload_type == header->payloadType) {
2047 int16_t seq_no_diff = header->sequenceNumber - prev_sequence_number;
Peter Kastingdce40cf2015-08-24 14:52:23 -07002048 size_t ts_diff = header->timestamp - prev_timestamp;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002049 if (seq_no_diff == 1 ||
2050 (seq_no_diff == 0 && ts_diff == decoder_frame_length_)) {
2051 // The next sequence number is available, or the next part of a packet
2052 // that was split into pieces upon insertion.
2053 next_packet_available = true;
2054 }
2055 prev_sequence_number = header->sequenceNumber;
2056 }
Peter Kastingdce40cf2015-08-24 14:52:23 -07002057 } while (extracted_samples < rtc::checked_cast<int>(required_samples) &&
2058 next_packet_available);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002059
henrik.lundin@webrtc.org61217152014-09-22 08:30:07 +00002060 if (extracted_samples > 0) {
2061 // Delete old packets only when we are going to decode something. Otherwise,
2062 // we could end up in the situation where we never decode anything, since
2063 // all incoming packets are considered too old but the buffer will also
2064 // never be flooded and flushed.
henrik.lundin@webrtc.org52b42cb2014-11-04 14:03:58 +00002065 packet_buffer_->DiscardAllOldPackets(timestamp_);
henrik.lundin@webrtc.org61217152014-09-22 08:30:07 +00002066 }
2067
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002068 return extracted_samples;
2069}
2070
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +00002071void NetEqImpl::UpdatePlcComponents(int fs_hz, size_t channels) {
2072 // Delete objects and create new ones.
2073 expand_.reset(expand_factory_->Create(background_noise_.get(),
2074 sync_buffer_.get(), &random_vector_,
Henrik Lundinbef77e22015-08-18 14:58:09 +02002075 &stats_, fs_hz, channels));
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +00002076 merge_.reset(new Merge(fs_hz, channels, expand_.get(), sync_buffer_.get()));
2077}
2078
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002079void NetEqImpl::SetSampleRateAndChannels(int fs_hz, size_t channels) {
Henrik Lundind67a2192015-08-03 12:54:37 +02002080 LOG(LS_VERBOSE) << "SetSampleRateAndChannels " << fs_hz << " " << channels;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002081 // TODO(hlundin): Change to an enumerator and skip assert.
2082 assert(fs_hz == 8000 || fs_hz == 16000 || fs_hz == 32000 || fs_hz == 48000);
2083 assert(channels > 0);
2084
2085 fs_hz_ = fs_hz;
2086 fs_mult_ = fs_hz / 8000;
Peter Kastingdce40cf2015-08-24 14:52:23 -07002087 output_size_samples_ = static_cast<size_t>(kOutputSizeMs * 8 * fs_mult_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002088 decoder_frame_length_ = 3 * output_size_samples_; // Initialize to 30ms.
2089
2090 last_mode_ = kModeNormal;
2091
2092 // Create a new array of mute factors and set all to 1.
2093 mute_factor_array_.reset(new int16_t[channels]);
2094 for (size_t i = 0; i < channels; ++i) {
2095 mute_factor_array_[i] = 16384; // 1.0 in Q14.
2096 }
2097
ossu97ba30e2016-04-25 07:55:58 -07002098 ComfortNoiseDecoder* cng_decoder = decoder_database_->GetActiveCngDecoder();
Karl Wiberg43766482015-08-27 15:22:11 +02002099 if (cng_decoder)
2100 cng_decoder->Reset();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002101
2102 // Reinit post-decode VAD with new sample rate.
2103 assert(vad_.get()); // Cannot be NULL here.
2104 vad_->Init();
2105
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00002106 // Delete algorithm buffer and create a new one.
henrik.lundin@webrtc.orgfd11bbf2013-09-30 20:38:44 +00002107 algorithm_buffer_.reset(new AudioMultiVector(channels));
henrik.lundin@webrtc.orgc487c6a2013-09-02 07:59:30 +00002108
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002109 // Delete sync buffer and create a new one.
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00002110 sync_buffer_.reset(new SyncBuffer(channels, kSyncBufferSize * fs_mult_));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002111
henrik.lundin@webrtc.orgea257842014-08-07 12:27:37 +00002112 // Delete BackgroundNoise object and create a new one.
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00002113 background_noise_.reset(new BackgroundNoise(channels));
henrik.lundin@webrtc.orgea257842014-08-07 12:27:37 +00002114 background_noise_->set_mode(background_noise_mode_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002115
2116 // Reset random vector.
2117 random_vector_.Reset();
2118
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +00002119 UpdatePlcComponents(fs_hz, channels);
2120
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002121 // Move index so that we create a small set of future samples (all 0).
2122 sync_buffer_->set_next_index(sync_buffer_->next_index() -
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +00002123 expand_->overlap_length());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002124
henrik.lundin@webrtc.org40d3fc62013-09-18 12:19:50 +00002125 normal_.reset(new Normal(fs_hz, decoder_database_.get(), *background_noise_,
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00002126 expand_.get()));
henrik.lundin@webrtc.orgd9faa462014-01-14 10:18:45 +00002127 accelerate_.reset(
2128 accelerate_factory_->Create(fs_hz, channels, *background_noise_));
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +00002129 preemptive_expand_.reset(preemptive_expand_factory_->Create(
Peter Kastingdce40cf2015-08-24 14:52:23 -07002130 fs_hz, channels, *background_noise_, expand_->overlap_length()));
henrik.lundin@webrtc.org40d3fc62013-09-18 12:19:50 +00002131
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002132 // Delete ComfortNoise object and create a new one.
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00002133 comfort_noise_.reset(new ComfortNoise(fs_hz, decoder_database_.get(),
2134 sync_buffer_.get()));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002135
2136 // Verify that |decoded_buffer_| is long enough.
2137 if (decoded_buffer_length_ < kMaxFrameSize * channels) {
2138 // Reallocate to larger size.
2139 decoded_buffer_length_ = kMaxFrameSize * channels;
2140 decoded_buffer_.reset(new int16_t[decoded_buffer_length_]);
2141 }
2142
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +00002143 // Create DecisionLogic if it is not created yet, then communicate new sample
2144 // rate and output size to DecisionLogic object.
2145 if (!decision_logic_.get()) {
henrik.lundin@webrtc.org7cbc4f92014-10-07 06:37:39 +00002146 CreateDecisionLogic();
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +00002147 }
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002148 decision_logic_->SetSampleRate(fs_hz_, output_size_samples_);
2149}
2150
henrik.lundin55480f52016-03-08 02:37:57 -08002151NetEqImpl::OutputType NetEqImpl::LastOutputType() {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002152 assert(vad_.get());
henrik.lundin@webrtc.org0d5da252013-09-18 21:12:38 +00002153 assert(expand_.get());
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002154 if (last_mode_ == kModeCodecInternalCng || last_mode_ == kModeRfc3389Cng) {
henrik.lundin55480f52016-03-08 02:37:57 -08002155 return OutputType::kCNG;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002156 } else if (last_mode_ == kModeExpand && expand_->MuteFactor(0) == 0) {
2157 // Expand mode has faded down to background noise only (very long expand).
henrik.lundin55480f52016-03-08 02:37:57 -08002158 return OutputType::kPLCCNG;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002159 } else if (last_mode_ == kModeExpand) {
henrik.lundin55480f52016-03-08 02:37:57 -08002160 return OutputType::kPLC;
wu@webrtc.org24301a62013-12-13 19:17:43 +00002161 } else if (vad_->running() && !vad_->active_speech()) {
henrik.lundin55480f52016-03-08 02:37:57 -08002162 return OutputType::kVadPassive;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002163 } else {
henrik.lundin55480f52016-03-08 02:37:57 -08002164 return OutputType::kNormalSpeech;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002165 }
2166}
2167
henrik.lundin@webrtc.org7cbc4f92014-10-07 06:37:39 +00002168void NetEqImpl::CreateDecisionLogic() {
Henrik Lundin47b17dc2016-05-10 10:20:59 +02002169 decision_logic_.reset(DecisionLogic::Create(
2170 fs_hz_, output_size_samples_, playout_mode_, decoder_database_.get(),
2171 *packet_buffer_.get(), delay_manager_.get(), buffer_level_filter_.get(),
2172 tick_timer_.get()));
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +00002173}
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00002174} // namespace webrtc