Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: webrtc/modules/audio_coding/neteq/tools/neteq_replacement_input.cc

Issue 2319553003: Fixing NetEqReplacementInput for reordered and missing packets (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 if (comfort_noise_types_.count(packet_->header.header.payloadType) != 0) { 78 if (comfort_noise_types_.count(packet_->header.header.payloadType) != 0) {
79 // If CNG, simply insert a zero-energy one-byte payload. 79 // If CNG, simply insert a zero-energy one-byte payload.
80 uint8_t cng_payload[1] = {127}; // Max attenuation of CNG. 80 uint8_t cng_payload[1] = {127}; // Max attenuation of CNG.
81 packet_->payload.SetData(cng_payload); 81 packet_->payload.SetData(cng_payload);
82 return; 82 return;
83 } 83 }
84 84
85 rtc::Optional<RTPHeader> next_hdr = source_->NextHeader(); 85 rtc::Optional<RTPHeader> next_hdr = source_->NextHeader();
86 RTC_DCHECK(next_hdr); 86 RTC_DCHECK(next_hdr);
87 uint8_t payload[12]; 87 uint8_t payload[12];
88 uint32_t input_frame_size_timestamps = 88 uint32_t input_frame_size_timestamps = last_frame_size_timestamps_;
89 next_hdr->timestamp - packet_->header.header.timestamp; 89 if (next_hdr->sequenceNumber == packet_->header.header.sequenceNumber + 1) {
90 if (next_hdr->sequenceNumber != packet_->header.header.sequenceNumber + 1) { 90 // Packets are in order.
91 // Gap in packet sequence. Cannot estimate payload length based on timestamp 91 input_frame_size_timestamps =
92 // difference. 92 next_hdr->timestamp - packet_->header.header.timestamp;
93 input_frame_size_timestamps = 0; 93 last_frame_size_timestamps_ = input_frame_size_timestamps;
94 } 94 }
95 FakeDecodeFromFile::PrepareEncoded(packet_->header.header.timestamp, 95 FakeDecodeFromFile::PrepareEncoded(packet_->header.header.timestamp,
96 input_frame_size_timestamps, 96 input_frame_size_timestamps,
97 packet_->payload.size(), payload); 97 packet_->payload.size(), payload);
98 packet_->payload.SetData(payload); 98 packet_->payload.SetData(payload);
99 packet_->header.header.payloadType = replacement_payload_type_; 99 packet_->header.header.payloadType = replacement_payload_type_;
100 return; 100 return;
101 } 101 }
102 102
103 } // namespace test 103 } // namespace test
104 } // namespace webrtc 104 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698