| Index: webrtc/modules/audio_coding/neteq/tools/neteq_packet_source_input.cc
|
| diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_packet_source_input.cc b/webrtc/modules/audio_coding/neteq/tools/neteq_packet_source_input.cc
|
| index 5fa60dc993ea3e6574bc49eb56132031ccdb1098..7d5aa3bd62a5a8897d711fcae079fb91f1f1c6f9 100644
|
| --- a/webrtc/modules/audio_coding/neteq/tools/neteq_packet_source_input.cc
|
| +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_packet_source_input.cc
|
| @@ -42,7 +42,7 @@ std::unique_ptr<NetEqInput::PacketData> NetEqPacketSourceInput::PopPacket() {
|
| return std::unique_ptr<PacketData>();
|
| }
|
| std::unique_ptr<PacketData> packet_data(new PacketData);
|
| - packet_->ConvertHeader(&packet_data->header);
|
| + packet_data->header = packet_->header();
|
| if (packet_->payload_length_bytes() == 0 &&
|
| packet_->virtual_payload_length_bytes() > 0) {
|
| // This is a header-only "dummy" packet. Set the payload to all zeros, with
|
|
|