| Index: talk/media/webrtc/webrtcvoiceengine.h
|
| diff --git a/talk/media/webrtc/webrtcvoiceengine.h b/talk/media/webrtc/webrtcvoiceengine.h
|
| index 269920523f4cf93852f12b9119861a3d63f15b94..544bf6ee6640eddab52a1c62c4569dae67b09bf3 100644
|
| --- a/talk/media/webrtc/webrtcvoiceengine.h
|
| +++ b/talk/media/webrtc/webrtcvoiceengine.h
|
| @@ -227,13 +227,15 @@ class WebRtcVoiceMediaChannel : public VoiceMediaChannel,
|
| const webrtc::PacketOptions& options) override {
|
| rtc::Buffer packet(reinterpret_cast<const uint8_t*>(data), len,
|
| kMaxRtpPacketLen);
|
| - return VoiceMediaChannel::SendPacket(&packet);
|
| + rtc::PacketOptions rtc_options;
|
| + rtc_options.packet_id = options.packet_id;
|
| + return VoiceMediaChannel::SendPacket(&packet, rtc_options);
|
| }
|
|
|
| bool SendRtcp(const uint8_t* data, size_t len) override {
|
| rtc::Buffer packet(reinterpret_cast<const uint8_t*>(data), len,
|
| kMaxRtpPacketLen);
|
| - return VoiceMediaChannel::SendRtcp(&packet);
|
| + return VoiceMediaChannel::SendRtcp(&packet, rtc::PacketOptions());
|
| }
|
|
|
| void OnError(int error);
|
|
|