OLD | NEW |
---|---|
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
52 return; | 52 return; |
53 } | 53 } |
54 ProcessReceivedPackets(); | 54 ProcessReceivedPackets(); |
55 } | 55 } |
56 | 56 |
57 FecPacketCounter FlexfecReceiver::GetPacketCounter() const { | 57 FecPacketCounter FlexfecReceiver::GetPacketCounter() const { |
58 RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_); | 58 RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_); |
59 return packet_counter_; | 59 return packet_counter_; |
60 } | 60 } |
61 | 61 |
62 // TODO(eladalon): We should be able to avoid FlexFEC-recovered packets | |
63 // reaching back here, by making the OnRtpPacket() function take a parameter | |
64 // such as |is_recovered|, which would be |true| for FlexFEC-recovered packets. | |
stefan-webrtc
2017/07/07 09:36:24
Seems a bit ugly to me since all rtp packet sinks
eladalon
2017/07/07 14:16:24
I see now that RtpPacketReceived::recovered() exis
| |
62 bool FlexfecReceiver::AddReceivedPacket(const RtpPacketReceived& packet) { | 65 bool FlexfecReceiver::AddReceivedPacket(const RtpPacketReceived& packet) { |
63 RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_); | 66 RTC_DCHECK_CALLED_SEQUENTIALLY(&sequence_checker_); |
64 | 67 |
65 // RTP packets with a full base header (12 bytes), but without payload, | 68 // RTP packets with a full base header (12 bytes), but without payload, |
66 // could conceivably be useful in the decoding. Therefore we check | 69 // could conceivably be useful in the decoding. Therefore we check |
67 // with a non-strict inequality here. | 70 // with a non-strict inequality here. |
68 RTC_DCHECK_GE(packet.size(), kRtpHeaderSize); | 71 RTC_DCHECK_GE(packet.size(), kRtpHeaderSize); |
69 | 72 |
70 // Demultiplex based on SSRC, and insert into erasure code decoder. | 73 // Demultiplex based on SSRC, and insert into erasure code decoder. |
71 std::unique_ptr<ReceivedPacket> received_packet(new ReceivedPacket()); | 74 std::unique_ptr<ReceivedPacket> received_packet(new ReceivedPacket()); |
(...skipping 14 matching lines...) Expand all Loading... | |
86 received_packet->pkt = rtc::scoped_refptr<Packet>(new Packet()); | 89 received_packet->pkt = rtc::scoped_refptr<Packet>(new Packet()); |
87 auto payload = packet.payload(); | 90 auto payload = packet.payload(); |
88 memcpy(received_packet->pkt->data, payload.data(), payload.size()); | 91 memcpy(received_packet->pkt->data, payload.data(), payload.size()); |
89 received_packet->pkt->length = payload.size(); | 92 received_packet->pkt->length = payload.size(); |
90 } else { | 93 } else { |
91 // This is a media packet, or a FlexFEC packet belonging to some | 94 // This is a media packet, or a FlexFEC packet belonging to some |
92 // other FlexFEC stream. | 95 // other FlexFEC stream. |
93 if (received_packet->ssrc != protected_media_ssrc_) { | 96 if (received_packet->ssrc != protected_media_ssrc_) { |
94 return false; | 97 return false; |
95 } | 98 } |
96 received_packet->is_fec = false; | 99 received_packet->is_fec = false; |
eladalon
2017/07/07 14:16:24
This looks suspect; TODO added and this bug filed:
| |
97 | 100 |
98 // Insert entire packet into erasure code. | 101 // Insert entire packet into erasure code. |
99 // TODO(brandtr): Remove this memcpy too. | 102 // TODO(brandtr): Remove this memcpy too. |
100 received_packet->pkt = rtc::scoped_refptr<Packet>(new Packet()); | 103 received_packet->pkt = rtc::scoped_refptr<Packet>(new Packet()); |
101 memcpy(received_packet->pkt->data, packet.data(), packet.size()); | 104 memcpy(received_packet->pkt->data, packet.data(), packet.size()); |
102 received_packet->pkt->length = packet.size(); | 105 received_packet->pkt->length = packet.size(); |
103 } | 106 } |
104 | 107 |
105 received_packets_.push_back(std::move(received_packet)); | 108 received_packets_.push_back(std::move(received_packet)); |
106 ++packet_counter_.num_packets; | 109 ++packet_counter_.num_packets; |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
145 ForwardErrorCorrection::ParseSsrc(recovered_packet->pkt->data); | 148 ForwardErrorCorrection::ParseSsrc(recovered_packet->pkt->data); |
146 LOG(LS_VERBOSE) << "Recovered media packet with SSRC: " << media_ssrc | 149 LOG(LS_VERBOSE) << "Recovered media packet with SSRC: " << media_ssrc |
147 << " from FlexFEC stream with SSRC: " << ssrc_ << "."; | 150 << " from FlexFEC stream with SSRC: " << ssrc_ << "."; |
148 last_recovered_packet_ms_ = now_ms; | 151 last_recovered_packet_ms_ = now_ms; |
149 } | 152 } |
150 } | 153 } |
151 return true; | 154 return true; |
152 } | 155 } |
153 | 156 |
154 } // namespace webrtc | 157 } // namespace webrtc |
OLD | NEW |