OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 } else { | 110 } else { |
111 streams.push_front(stream); | 111 streams.push_front(stream); |
112 } | 112 } |
113 } | 113 } |
114 for (auto s : streams) { | 114 for (auto s : streams) { |
115 call->DestroyAudioReceiveStream(s); | 115 call->DestroyAudioReceiveStream(s); |
116 } | 116 } |
117 streams.clear(); | 117 streams.clear(); |
118 } | 118 } |
119 } | 119 } |
| 120 |
| 121 TEST(CallTest, CreateDestroy_FlexfecReceiveStream) { |
| 122 CallHelper call; |
| 123 FlexfecReceiveStream::Config config; |
| 124 config.flexfec_payload_type = 118; |
| 125 config.flexfec_ssrc = 38837212; |
| 126 config.protected_media_ssrcs = {27273}; |
| 127 FlexfecReceiveStream* stream = call->CreateFlexfecReceiveStream(config); |
| 128 EXPECT_NE(stream, nullptr); |
| 129 call->DestroyFlexfecReceiveStream(stream); |
| 130 } |
| 131 |
| 132 TEST(CallTest, CreateDestroy_FlexfecReceiveStreams) { |
| 133 CallHelper call; |
| 134 FlexfecReceiveStream::Config config; |
| 135 config.flexfec_payload_type = 118; |
| 136 std::list<FlexfecReceiveStream*> streams; |
| 137 for (int i = 0; i < 2; ++i) { |
| 138 for (uint32_t ssrc = 0; ssrc < 1234567; ssrc += 34567) { |
| 139 config.flexfec_ssrc = ssrc; |
| 140 config.protected_media_ssrcs = {ssrc + 1}; |
| 141 FlexfecReceiveStream* stream = call->CreateFlexfecReceiveStream(config); |
| 142 EXPECT_NE(stream, nullptr); |
| 143 if (ssrc & 1) { |
| 144 streams.push_back(stream); |
| 145 } else { |
| 146 streams.push_front(stream); |
| 147 } |
| 148 } |
| 149 for (auto s : streams) { |
| 150 call->DestroyFlexfecReceiveStream(s); |
| 151 } |
| 152 streams.clear(); |
| 153 } |
| 154 } |
| 155 |
| 156 TEST(CallTest, MultipleFlexfecReceiveStreamsProtectingSingleVideoStream) { |
| 157 CallHelper call; |
| 158 FlexfecReceiveStream::Config config; |
| 159 config.flexfec_payload_type = 118; |
| 160 config.protected_media_ssrcs = {1324234}; |
| 161 FlexfecReceiveStream* stream; |
| 162 std::list<FlexfecReceiveStream*> streams; |
| 163 |
| 164 config.flexfec_ssrc = 838383; |
| 165 stream = call->CreateFlexfecReceiveStream(config); |
| 166 EXPECT_NE(stream, nullptr); |
| 167 streams.push_back(stream); |
| 168 |
| 169 config.flexfec_ssrc = 424993; |
| 170 stream = call->CreateFlexfecReceiveStream(config); |
| 171 EXPECT_NE(stream, nullptr); |
| 172 streams.push_back(stream); |
| 173 |
| 174 config.flexfec_ssrc = 99383; |
| 175 stream = call->CreateFlexfecReceiveStream(config); |
| 176 EXPECT_NE(stream, nullptr); |
| 177 streams.push_back(stream); |
| 178 |
| 179 config.flexfec_ssrc = 5548; |
| 180 stream = call->CreateFlexfecReceiveStream(config); |
| 181 EXPECT_NE(stream, nullptr); |
| 182 streams.push_back(stream); |
| 183 |
| 184 for (auto s : streams) { |
| 185 call->DestroyFlexfecReceiveStream(s); |
| 186 } |
| 187 } |
| 188 |
120 } // namespace webrtc | 189 } // namespace webrtc |
OLD | NEW |