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

Side by Side Diff: webrtc/media/engine/webrtcvideoengine2.cc

Issue 2246313002: If encoding is inactive, don't start sending when stream is reconfigured. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Making a test assertion better (don't compare pointer addresses). Created 4 years, 3 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
« no previous file with comments | « no previous file | webrtc/media/engine/webrtcvideoengine2_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 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 2228 matching lines...) Expand 10 before | Expand all | Expand 10 after
2239 LOG(LS_WARNING) << "RTX SSRCs configured but there's no configured RTX " 2239 LOG(LS_WARNING) << "RTX SSRCs configured but there's no configured RTX "
2240 "payload type the set codec. Ignoring RTX."; 2240 "payload type the set codec. Ignoring RTX.";
2241 config.rtp.rtx.ssrcs.clear(); 2241 config.rtp.rtx.ssrcs.clear();
2242 } 2242 }
2243 stream_ = call_->CreateVideoSendStream(std::move(config), 2243 stream_ = call_->CreateVideoSendStream(std::move(config),
2244 parameters_.encoder_config.Copy()); 2244 parameters_.encoder_config.Copy());
2245 2245
2246 parameters_.encoder_config.encoder_specific_settings = NULL; 2246 parameters_.encoder_config.encoder_specific_settings = NULL;
2247 pending_encoder_reconfiguration_ = false; 2247 pending_encoder_reconfiguration_ = false;
2248 2248
2249 if (sending_) { 2249 // Call stream_->Start() if necessary conditions are met.
2250 stream_->Start(); 2250 UpdateSendState();
2251 }
2252 } 2251 }
2253 2252
2254 WebRtcVideoChannel2::WebRtcVideoReceiveStream::WebRtcVideoReceiveStream( 2253 WebRtcVideoChannel2::WebRtcVideoReceiveStream::WebRtcVideoReceiveStream(
2255 webrtc::Call* call, 2254 webrtc::Call* call,
2256 const StreamParams& sp, 2255 const StreamParams& sp,
2257 webrtc::VideoReceiveStream::Config config, 2256 webrtc::VideoReceiveStream::Config config,
2258 WebRtcVideoDecoderFactory* external_decoder_factory, 2257 WebRtcVideoDecoderFactory* external_decoder_factory,
2259 bool default_stream, 2258 bool default_stream,
2260 const std::vector<VideoCodecSettings>& recv_codecs, 2259 const std::vector<VideoCodecSettings>& recv_codecs,
2261 bool red_disabled_by_remote_side) 2260 bool red_disabled_by_remote_side)
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
2694 rtx_mapping[video_codecs[i].codec.id] != 2693 rtx_mapping[video_codecs[i].codec.id] !=
2695 fec_settings.red_payload_type) { 2694 fec_settings.red_payload_type) {
2696 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; 2695 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id];
2697 } 2696 }
2698 } 2697 }
2699 2698
2700 return video_codecs; 2699 return video_codecs;
2701 } 2700 }
2702 2701
2703 } // namespace cricket 2702 } // namespace cricket
OLDNEW
« no previous file with comments | « no previous file | webrtc/media/engine/webrtcvideoengine2_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698