blob: f08e3c3960168b7c22be975a7376c19d6e012e5b [file] [log] [blame]
nisseeed52bf2017-05-19 06:15:19 -07001/*
2 * Copyright (c) 2017 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
11#include <utility>
12
13#include "webrtc/call/rtx_receive_stream.h"
14#include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h"
15
16namespace webrtc {
17
18RtxReceiveStream::RtxReceiveStream(
19 RtpPacketSinkInterface* media_sink,
20 std::map<int, int> rtx_payload_type_map,
21 uint32_t media_ssrc)
22 : media_sink_(media_sink),
23 rtx_payload_type_map_(std::move(rtx_payload_type_map)),
24 media_ssrc_(media_ssrc) {}
25
nisse76e62b02017-05-31 02:24:52 -070026RtxReceiveStream::~RtxReceiveStream() = default;
27
nisseeed52bf2017-05-19 06:15:19 -070028void RtxReceiveStream::OnRtpPacket(const RtpPacketReceived& rtx_packet) {
29 rtc::ArrayView<const uint8_t> payload = rtx_packet.payload();
30
31 if (payload.size() < kRtxHeaderSize) {
32 return;
33 }
34
35 auto it = rtx_payload_type_map_.find(rtx_packet.PayloadType());
36 if (it == rtx_payload_type_map_.end()) {
37 return;
38 }
39 RtpPacketReceived media_packet;
40 media_packet.CopyHeaderFrom(rtx_packet);
41
42 media_packet.SetSsrc(media_ssrc_);
43 media_packet.SetSequenceNumber((payload[0] << 8) + payload[1]);
44 media_packet.SetPayloadType(it->second);
45
46 // Skip the RTX header.
47 rtc::ArrayView<const uint8_t> rtx_payload =
48 payload.subview(kRtxHeaderSize);
49
50 uint8_t* media_payload = media_packet.AllocatePayload(rtx_payload.size());
51 RTC_DCHECK(media_payload != nullptr);
52
53 memcpy(media_payload, rtx_payload.data(), rtx_payload.size());
54
55 media_sink_->OnRtpPacket(media_packet);
56}
57
58} // namespace webrtc