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

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

Issue 2974453002: Protected streams report RTP messages directly to the FlexFec streams (Closed)
Patch Set: . Created 3 years, 5 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) 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 2159 matching lines...) Expand 10 before | Expand all | Expand 10 after
2170 external(external) { 2170 external(external) {
2171 if (external) { 2171 if (external) {
2172 external_decoder = decoder; 2172 external_decoder = decoder;
2173 this->decoder = 2173 this->decoder =
2174 new webrtc::VideoDecoderSoftwareFallbackWrapper(type, external_decoder); 2174 new webrtc::VideoDecoderSoftwareFallbackWrapper(type, external_decoder);
2175 } 2175 }
2176 } 2176 }
2177 2177
2178 WebRtcVideoChannel::WebRtcVideoReceiveStream::~WebRtcVideoReceiveStream() { 2178 WebRtcVideoChannel::WebRtcVideoReceiveStream::~WebRtcVideoReceiveStream() {
2179 if (flexfec_stream_) { 2179 if (flexfec_stream_) {
2180 MaybeDissociateFlexfecFromVideo();
2180 call_->DestroyFlexfecReceiveStream(flexfec_stream_); 2181 call_->DestroyFlexfecReceiveStream(flexfec_stream_);
2181 } 2182 }
2182 call_->DestroyVideoReceiveStream(stream_); 2183 call_->DestroyVideoReceiveStream(stream_);
2183 ClearDecoders(&allocated_decoders_); 2184 ClearDecoders(&allocated_decoders_);
2184 } 2185 }
2185 2186
2186 const std::vector<uint32_t>& 2187 const std::vector<uint32_t>&
2187 WebRtcVideoChannel::WebRtcVideoReceiveStream::GetSsrcs() const { 2188 WebRtcVideoChannel::WebRtcVideoReceiveStream::GetSsrcs() const {
2188 return stream_params_.ssrcs; 2189 return stream_params_.ssrcs;
2189 } 2190 }
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
2350 LOG(LS_INFO) 2351 LOG(LS_INFO)
2351 << "RecreateWebRtcVideoStream (recv) because of SetRecvParameters"; 2352 << "RecreateWebRtcVideoStream (recv) because of SetRecvParameters";
2352 RecreateWebRtcVideoStream(); 2353 RecreateWebRtcVideoStream();
2353 ClearDecoders(&old_decoders); 2354 ClearDecoders(&old_decoders);
2354 } 2355 }
2355 } 2356 }
2356 2357
2357 void WebRtcVideoChannel::WebRtcVideoReceiveStream:: 2358 void WebRtcVideoChannel::WebRtcVideoReceiveStream::
2358 RecreateWebRtcVideoStream() { 2359 RecreateWebRtcVideoStream() {
2359 if (stream_) { 2360 if (stream_) {
2361 MaybeDissociateFlexfecFromVideo();
2360 call_->DestroyVideoReceiveStream(stream_); 2362 call_->DestroyVideoReceiveStream(stream_);
2361 stream_ = nullptr; 2363 stream_ = nullptr;
2362 } 2364 }
2363 webrtc::VideoReceiveStream::Config config = config_.Copy(); 2365 webrtc::VideoReceiveStream::Config config = config_.Copy();
2364 config.rtp.protected_by_flexfec = (flexfec_stream_ != nullptr); 2366 config.rtp.protected_by_flexfec = (flexfec_stream_ != nullptr);
2365 stream_ = call_->CreateVideoReceiveStream(std::move(config)); 2367 stream_ = call_->CreateVideoReceiveStream(std::move(config));
2368 MaybeAssociateFlexfecFromVideo();
2366 stream_->Start(); 2369 stream_->Start();
2367 } 2370 }
2368 2371
2369 void WebRtcVideoChannel::WebRtcVideoReceiveStream:: 2372 void WebRtcVideoChannel::WebRtcVideoReceiveStream::
2370 MaybeRecreateWebRtcFlexfecStream() { 2373 MaybeRecreateWebRtcFlexfecStream() {
2371 if (flexfec_stream_) { 2374 if (flexfec_stream_) {
2375 MaybeDissociateFlexfecFromVideo();
2372 call_->DestroyFlexfecReceiveStream(flexfec_stream_); 2376 call_->DestroyFlexfecReceiveStream(flexfec_stream_);
2373 flexfec_stream_ = nullptr; 2377 flexfec_stream_ = nullptr;
2374 } 2378 }
2375 if (flexfec_config_.IsCompleteAndEnabled()) { 2379 if (flexfec_config_.IsCompleteAndEnabled()) {
2376 flexfec_stream_ = call_->CreateFlexfecReceiveStream(flexfec_config_); 2380 flexfec_stream_ = call_->CreateFlexfecReceiveStream(flexfec_config_);
2377 flexfec_stream_->Start(); 2381 flexfec_stream_->Start();
2382 MaybeAssociateFlexfecFromVideo();
2378 } 2383 }
2379 } 2384 }
2380 2385
2386 void WebRtcVideoChannel::WebRtcVideoReceiveStream::
2387 MaybeAssociateFlexfecFromVideo() {
2388 if (stream_ && flexfec_stream_) {
2389 stream_->AddSecondarySink(flexfec_stream_);
2390 }
2391 }
2392
2393 void WebRtcVideoChannel::WebRtcVideoReceiveStream::
2394 MaybeDissociateFlexfecFromVideo() {
2395 if (stream_ && flexfec_stream_) {
2396 stream_->RemoveSecondarySink(flexfec_stream_);
2397 }
2398 }
2399
2381 void WebRtcVideoChannel::WebRtcVideoReceiveStream::ClearDecoders( 2400 void WebRtcVideoChannel::WebRtcVideoReceiveStream::ClearDecoders(
2382 std::vector<AllocatedDecoder>* allocated_decoders) { 2401 std::vector<AllocatedDecoder>* allocated_decoders) {
2383 for (size_t i = 0; i < allocated_decoders->size(); ++i) { 2402 for (size_t i = 0; i < allocated_decoders->size(); ++i) {
2384 if ((*allocated_decoders)[i].external) { 2403 if ((*allocated_decoders)[i].external) {
2385 external_decoder_factory_->DestroyVideoDecoder( 2404 external_decoder_factory_->DestroyVideoDecoder(
2386 (*allocated_decoders)[i].external_decoder); 2405 (*allocated_decoders)[i].external_decoder);
2387 } 2406 }
2388 delete (*allocated_decoders)[i].decoder; 2407 delete (*allocated_decoders)[i].decoder;
2389 } 2408 }
2390 allocated_decoders->clear(); 2409 allocated_decoders->clear();
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
2660 stream.temporal_layer_thresholds_bps.resize(GetDefaultVp9TemporalLayers() - 2679 stream.temporal_layer_thresholds_bps.resize(GetDefaultVp9TemporalLayers() -
2661 1); 2680 1);
2662 } 2681 }
2663 2682
2664 std::vector<webrtc::VideoStream> streams; 2683 std::vector<webrtc::VideoStream> streams;
2665 streams.push_back(stream); 2684 streams.push_back(stream);
2666 return streams; 2685 return streams;
2667 } 2686 }
2668 2687
2669 } // namespace cricket 2688 } // namespace cricket
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698