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 16 matching lines...) Expand all Loading... | |
27 ss << "{payload_type: " << payload_type; | 27 ss << "{payload_type: " << payload_type; |
28 ss << ", remote_ssrc: " << remote_ssrc; | 28 ss << ", remote_ssrc: " << remote_ssrc; |
29 ss << ", local_ssrc: " << local_ssrc; | 29 ss << ", local_ssrc: " << local_ssrc; |
30 ss << ", protected_media_ssrcs: ["; | 30 ss << ", protected_media_ssrcs: ["; |
31 size_t i = 0; | 31 size_t i = 0; |
32 for (; i + 1 < protected_media_ssrcs.size(); ++i) | 32 for (; i + 1 < protected_media_ssrcs.size(); ++i) |
33 ss << protected_media_ssrcs[i] << ", "; | 33 ss << protected_media_ssrcs[i] << ", "; |
34 if (!protected_media_ssrcs.empty()) | 34 if (!protected_media_ssrcs.empty()) |
35 ss << protected_media_ssrcs[i]; | 35 ss << protected_media_ssrcs[i]; |
36 ss << "], transport_cc: " << (transport_cc ? "on" : "off"); | 36 ss << "], transport_cc: " << (transport_cc ? "on" : "off"); |
37 ss << ", extensions: ["; | 37 ss << ", rtp_header_extensions: ["; |
38 i = 0; | 38 i = 0; |
39 for (; i + 1 < extensions.size(); ++i) | 39 for (; i + 1 < rtp_header_extensions.size(); ++i) |
40 ss << extensions[i].ToString() << ", "; | 40 ss << rtp_header_extensions[i].ToString() << ", "; |
41 if (!extensions.empty()) | 41 if (!rtp_header_extensions.empty()) |
42 ss << extensions[i].ToString(); | 42 ss << rtp_header_extensions[i].ToString(); |
43 ss << "]}"; | 43 ss << "]}"; |
44 return ss.str(); | 44 return ss.str(); |
45 } | 45 } |
46 | 46 |
47 namespace { | 47 namespace { |
48 | 48 |
49 // TODO(brandtr): Update this function when we support multistream protection. | 49 // TODO(brandtr): Update this function when we support multistream protection. |
50 std::unique_ptr<FlexfecReceiver> MaybeCreateFlexfecReceiver( | 50 std::unique_ptr<FlexfecReceiver> MaybeCreateFlexfecReceiver( |
51 const FlexfecReceiveStream::Config& config, | 51 const FlexfecReceiveStream::Config& config, |
52 RecoveredPacketReceiver* recovered_packet_callback) { | 52 RecoveredPacketReceiver* recovered_packet_receiver) { |
53 if (config.payload_type < 0) { | 53 if (config.payload_type < 0) { |
54 LOG(LS_WARNING) << "Invalid FlexFEC payload type given. " | 54 LOG(LS_WARNING) << "Invalid FlexFEC payload type given. " |
55 << "This FlexfecReceiveStream will therefore be useless."; | 55 << "This FlexfecReceiveStream will therefore be useless."; |
56 return nullptr; | 56 return nullptr; |
57 } | 57 } |
58 RTC_DCHECK_GE(config.payload_type, 0); | 58 RTC_DCHECK_GE(config.payload_type, 0); |
59 RTC_DCHECK_LE(config.payload_type, 127); | 59 RTC_DCHECK_LE(config.payload_type, 127); |
60 if (config.remote_ssrc == 0) { | 60 if (config.remote_ssrc == 0) { |
61 LOG(LS_WARNING) << "Invalid FlexFEC SSRC given. " | 61 LOG(LS_WARNING) << "Invalid FlexFEC SSRC given. " |
62 << "This FlexfecReceiveStream will therefore be useless."; | 62 << "This FlexfecReceiveStream will therefore be useless."; |
63 return nullptr; | 63 return nullptr; |
64 } | 64 } |
65 if (config.protected_media_ssrcs.empty()) { | 65 if (config.protected_media_ssrcs.empty()) { |
66 LOG(LS_WARNING) << "No protected media SSRC supplied. " | 66 LOG(LS_WARNING) << "No protected media SSRC supplied. " |
67 << "This FlexfecReceiveStream will therefore be useless."; | 67 << "This FlexfecReceiveStream will therefore be useless."; |
68 return nullptr; | 68 return nullptr; |
69 } | 69 } |
70 | 70 |
71 if (config.protected_media_ssrcs.size() > 1) { | 71 if (config.protected_media_ssrcs.size() > 1) { |
72 LOG(LS_WARNING) | 72 LOG(LS_WARNING) |
73 << "The supplied FlexfecConfig contained multiple protected " | 73 << "The supplied FlexfecConfig contained multiple protected " |
74 "media streams, but our implementation currently only " | 74 "media streams, but our implementation currently only " |
75 "supports protecting a single media stream. " | 75 "supports protecting a single media stream. " |
76 "To avoid confusion, disabling FlexFEC completely."; | 76 "To avoid confusion, disabling FlexFEC completely."; |
77 return nullptr; | 77 return nullptr; |
78 } | 78 } |
79 RTC_DCHECK_EQ(1U, config.protected_media_ssrcs.size()); | 79 RTC_DCHECK_EQ(1U, config.protected_media_ssrcs.size()); |
80 return std::unique_ptr<FlexfecReceiver>( | 80 return std::unique_ptr<FlexfecReceiver>( |
81 new FlexfecReceiver(config.remote_ssrc, config.protected_media_ssrcs[0], | 81 new FlexfecReceiver(config.remote_ssrc, config.protected_media_ssrcs[0], |
82 recovered_packet_callback)); | 82 recovered_packet_receiver)); |
83 } | 83 } |
84 | 84 |
85 } // namespace | 85 } // namespace |
86 | 86 |
87 namespace internal { | 87 namespace internal { |
88 | 88 |
89 FlexfecReceiveStream::FlexfecReceiveStream( | 89 FlexfecReceiveStream::FlexfecReceiveStream( |
90 const Config& config, | 90 const Config& config, |
91 RecoveredPacketReceiver* recovered_packet_callback) | 91 RecoveredPacketReceiver* recovered_packet_receiver) |
92 : started_(false), | 92 : started_(false), |
93 config_(config), | 93 config_(config), |
94 receiver_( | 94 receiver_( |
95 MaybeCreateFlexfecReceiver(config_, recovered_packet_callback)) { | 95 MaybeCreateFlexfecReceiver(config_, recovered_packet_receiver)) { |
96 LOG(LS_INFO) << "FlexfecReceiveStream: " << config_.ToString(); | 96 LOG(LS_INFO) << "FlexfecReceiveStream: " << config_.ToString(); |
97 } | 97 } |
98 | 98 |
99 FlexfecReceiveStream::~FlexfecReceiveStream() { | 99 FlexfecReceiveStream::~FlexfecReceiveStream() { |
100 LOG(LS_INFO) << "~FlexfecReceiveStream: " << config_.ToString(); | 100 LOG(LS_INFO) << "~FlexfecReceiveStream: " << config_.ToString(); |
101 Stop(); | 101 Stop(); |
102 } | 102 } |
103 | 103 |
104 bool FlexfecReceiveStream::AddAndProcessReceivedPacket(const uint8_t* packet, | 104 bool FlexfecReceiveStream::AddAndProcessReceivedPacket( |
105 size_t packet_length) { | 105 RtpPacketReceived packet) { |
106 { | 106 { |
107 rtc::CritScope cs(&crit_); | 107 rtc::CritScope cs(&crit_); |
108 if (!started_) | 108 if (!started_) |
109 return false; | 109 return false; |
110 } | 110 } |
111 if (!receiver_) | 111 if (!receiver_) |
112 return false; | 112 return false; |
113 return receiver_->AddAndProcessReceivedPacket(packet, packet_length); | 113 return receiver_->AddAndProcessReceivedPacket(packet); |
danilchap
2016/12/14 13:39:02
either move or pass by const&
brandtr
2016/12/14 14:08:31
I was going to ask you about that in the email, bu
| |
114 } | 114 } |
115 | 115 |
116 void FlexfecReceiveStream::Start() { | 116 void FlexfecReceiveStream::Start() { |
117 rtc::CritScope cs(&crit_); | 117 rtc::CritScope cs(&crit_); |
118 started_ = true; | 118 started_ = true; |
119 } | 119 } |
120 | 120 |
121 void FlexfecReceiveStream::Stop() { | 121 void FlexfecReceiveStream::Stop() { |
122 rtc::CritScope cs(&crit_); | 122 rtc::CritScope cs(&crit_); |
123 started_ = false; | 123 started_ = false; |
124 } | 124 } |
125 | 125 |
126 // TODO(brandtr): Implement this member function when we have designed the | 126 // TODO(brandtr): Implement this member function when we have designed the |
127 // stats for FlexFEC. | 127 // stats for FlexFEC. |
128 FlexfecReceiveStream::Stats FlexfecReceiveStream::GetStats() const { | 128 FlexfecReceiveStream::Stats FlexfecReceiveStream::GetStats() const { |
129 return webrtc::FlexfecReceiveStream::Stats(); | 129 return webrtc::FlexfecReceiveStream::Stats(); |
130 } | 130 } |
131 | 131 |
132 } // namespace internal | 132 } // namespace internal |
133 | 133 |
134 } // namespace webrtc | 134 } // namespace webrtc |
OLD | NEW |