Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: webrtc/video/video_quality_test.cc

Issue 2974453002: Protected streams report RTP messages directly to the FlexFec streams (Closed)
Patch Set: Remove mistaken TODO. Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 video_receive_stream->RemoveSecondarySink(flexfec_receive_stream);
2051 }
2049 flexfec_receive_stream->Stop(); 2052 flexfec_receive_stream->Stop();
2050 receiver_call_->DestroyFlexfecReceiveStream(flexfec_receive_stream); 2053 receiver_call_->DestroyFlexfecReceiveStream(flexfec_receive_stream);
2051 } 2054 }
2052 for (VideoReceiveStream* receive_stream : video_receive_streams_) { 2055 for (VideoReceiveStream* receive_stream : video_receive_streams_) {
2053 receive_stream->Stop(); 2056 receive_stream->Stop();
2054 receiver_call_->DestroyVideoReceiveStream(receive_stream); 2057 receiver_call_->DestroyVideoReceiveStream(receive_stream);
2055 } 2058 }
2056 sender_call_->DestroyVideoSendStream(video_send_stream_); 2059 sender_call_->DestroyVideoSendStream(video_send_stream_);
2057 } 2060 }
2058 2061
(...skipping 23 matching lines...) Expand all
2082 if (!params_.logging.encoded_frame_base_path.empty()) { 2085 if (!params_.logging.encoded_frame_base_path.empty()) {
2083 std::ostringstream str; 2086 std::ostringstream str;
2084 str << receive_logs_++; 2087 str << receive_logs_++;
2085 std::string path = 2088 std::string path =
2086 params_.logging.encoded_frame_base_path + "." + str.str() + ".recv.ivf"; 2089 params_.logging.encoded_frame_base_path + "." + str.str() + ".recv.ivf";
2087 stream->EnableEncodedFrameRecording(rtc::CreatePlatformFile(path), 2090 stream->EnableEncodedFrameRecording(rtc::CreatePlatformFile(path),
2088 100000000); 2091 100000000);
2089 } 2092 }
2090 } 2093 }
2091 } // namespace webrtc 2094 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698