| Index: webrtc/modules/audio_coding/neteq/neteq_impl.cc
|
| diff --git a/webrtc/modules/audio_coding/neteq/neteq_impl.cc b/webrtc/modules/audio_coding/neteq/neteq_impl.cc
|
| index 308d0090e251213ac98ab2cb93b3974574f75344..05c559d61fccceddf126cc278f79e33a82a8c4e3 100644
|
| --- a/webrtc/modules/audio_coding/neteq/neteq_impl.cc
|
| +++ b/webrtc/modules/audio_coding/neteq/neteq_impl.cc
|
| @@ -630,21 +630,6 @@ int NetEqImpl::InsertPacketInternal(const WebRtcRTPHeader& rtp_header,
|
| }
|
| }
|
|
|
| - // Split payloads into smaller chunks. This also verifies that all payloads
|
| - // are of a known payload type.
|
| - ret = payload_splitter_->SplitAudio(&packet_list, *decoder_database_);
|
| - if (ret != PayloadSplitter::kOK) {
|
| - PacketBuffer::DeleteAllPackets(&packet_list);
|
| - switch (ret) {
|
| - case PayloadSplitter::kUnknownPayloadType:
|
| - return kUnknownRtpPayloadType;
|
| - case PayloadSplitter::kFrameSplitError:
|
| - return kFrameSplitError;
|
| - default:
|
| - return kOtherError;
|
| - }
|
| - }
|
| -
|
| // Update bandwidth estimate, if the packet is not comfort noise.
|
| if (!packet_list.empty() &&
|
| !decoder_database_->IsComfortNoise(main_header.payloadType)) {
|
|
|