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 #include "webrtc/video/video_quality_test.h" | 10 #include "webrtc/video/video_quality_test.h" |
(...skipping 2028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2039 sender_call_->DestroyAudioSendStream(audio_send_stream_); | 2039 sender_call_->DestroyAudioSendStream(audio_send_stream_); |
2040 receiver_call_->DestroyAudioReceiveStream(audio_receive_stream); | 2040 receiver_call_->DestroyAudioReceiveStream(audio_receive_stream); |
2041 } | 2041 } |
2042 | 2042 |
2043 // Stop receiving and sending video. | 2043 // Stop receiving and sending video. |
2044 if (params_.video.enabled) { | 2044 if (params_.video.enabled) { |
2045 video_capturer_->Stop(); | 2045 video_capturer_->Stop(); |
2046 video_send_stream_->Stop(); | 2046 video_send_stream_->Stop(); |
2047 for (FlexfecReceiveStream* flexfec_receive_stream : | 2047 for (FlexfecReceiveStream* flexfec_receive_stream : |
2048 flexfec_receive_streams_) { | 2048 flexfec_receive_streams_) { |
2049 for (VideoReceiveStream* video_receive_stream : video_receive_streams_) { | |
2050 // TODO(eladalon): !!! Discuss with reviewers - do we perhaps want | |
2051 // something else to be in charge of removing the secondary sinks? | |
danilchap
2017/07/24 09:03:46
what are the alternatives to choose from?
eladalon
2017/07/24 13:15:48
I found it unclear that DestroyFlexfecReceiveStrea
| |
2052 video_receive_stream->RemoveSecondarySink(flexfec_receive_stream); | |
2053 } | |
2049 flexfec_receive_stream->Stop(); | 2054 flexfec_receive_stream->Stop(); |
2050 receiver_call_->DestroyFlexfecReceiveStream(flexfec_receive_stream); | 2055 receiver_call_->DestroyFlexfecReceiveStream(flexfec_receive_stream); |
2051 } | 2056 } |
2052 for (VideoReceiveStream* receive_stream : video_receive_streams_) { | 2057 for (VideoReceiveStream* receive_stream : video_receive_streams_) { |
2053 receive_stream->Stop(); | 2058 receive_stream->Stop(); |
2054 receiver_call_->DestroyVideoReceiveStream(receive_stream); | 2059 receiver_call_->DestroyVideoReceiveStream(receive_stream); |
2055 } | 2060 } |
2056 sender_call_->DestroyVideoSendStream(video_send_stream_); | 2061 sender_call_->DestroyVideoSendStream(video_send_stream_); |
2057 } | 2062 } |
2058 | 2063 |
(...skipping 23 matching lines...) Expand all Loading... | |
2082 if (!params_.logging.encoded_frame_base_path.empty()) { | 2087 if (!params_.logging.encoded_frame_base_path.empty()) { |
2083 std::ostringstream str; | 2088 std::ostringstream str; |
2084 str << receive_logs_++; | 2089 str << receive_logs_++; |
2085 std::string path = | 2090 std::string path = |
2086 params_.logging.encoded_frame_base_path + "." + str.str() + ".recv.ivf"; | 2091 params_.logging.encoded_frame_base_path + "." + str.str() + ".recv.ivf"; |
2087 stream->EnableEncodedFrameRecording(rtc::CreatePlatformFile(path), | 2092 stream->EnableEncodedFrameRecording(rtc::CreatePlatformFile(path), |
2088 100000000); | 2093 100000000); |
2089 } | 2094 } |
2090 } | 2095 } |
2091 } // namespace webrtc | 2096 } // namespace webrtc |
OLD | NEW |