OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 #include <algorithm> | 10 #include <algorithm> |
(...skipping 3130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3141 << "Timed out waiting for all SSRCs to send packets."; | 3141 << "Timed out waiting for all SSRCs to send packets."; |
3142 } | 3142 } |
3143 | 3143 |
3144 send_transport.StopSending(); | 3144 send_transport.StopSending(); |
3145 receive_transport.StopSending(); | 3145 receive_transport.StopSending(); |
3146 | 3146 |
3147 Stop(); | 3147 Stop(); |
3148 DestroyStreams(); | 3148 DestroyStreams(); |
3149 } | 3149 } |
3150 | 3150 |
3151 TEST_F(EndToEndTest, RestartingSendStreamPreservesRtpState) { | 3151 TEST_F(EndToEndTest, DISABLED_RestartingSendStreamPreservesRtpState) { |
3152 TestRtpStatePreservation(false); | 3152 TestRtpStatePreservation(false); |
3153 } | 3153 } |
3154 | 3154 |
3155 TEST_F(EndToEndTest, RestartingSendStreamPreservesRtpStatesWithRtx) { | 3155 TEST_F(EndToEndTest, RestartingSendStreamPreservesRtpStatesWithRtx) { |
3156 TestRtpStatePreservation(true); | 3156 TestRtpStatePreservation(true); |
3157 } | 3157 } |
3158 | 3158 |
3159 TEST_F(EndToEndTest, RespectsNetworkState) { | 3159 TEST_F(EndToEndTest, RespectsNetworkState) { |
3160 // TODO(pbos): Remove accepted downtime packets etc. when signaling network | 3160 // TODO(pbos): Remove accepted downtime packets etc. when signaling network |
3161 // down blocks until no more packets will be sent. | 3161 // down blocks until no more packets will be sent. |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3532 private: | 3532 private: |
3533 bool video_observed_; | 3533 bool video_observed_; |
3534 bool audio_observed_; | 3534 bool audio_observed_; |
3535 SequenceNumberUnwrapper unwrapper_; | 3535 SequenceNumberUnwrapper unwrapper_; |
3536 std::set<int64_t> received_packet_ids_; | 3536 std::set<int64_t> received_packet_ids_; |
3537 } test; | 3537 } test; |
3538 | 3538 |
3539 RunBaseTest(&test); | 3539 RunBaseTest(&test); |
3540 } | 3540 } |
3541 } // namespace webrtc | 3541 } // namespace webrtc |
OLD | NEW |