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

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

Issue 2553863003: Parse FlexFEC RTP headers in Call and add integration with BWE. (Closed)
Patch Set: Rebase and changes, including adressing danilchap's early comments. Created 4 years 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 2330 matching lines...) Expand 10 before | Expand all | Expand 10 after
2341 stream_->Start(); 2341 stream_->Start();
2342 if (IsFlexfecFieldTrialEnabled() && flexfec_config_.IsCompleteAndEnabled()) { 2342 if (IsFlexfecFieldTrialEnabled() && flexfec_config_.IsCompleteAndEnabled()) {
2343 webrtc::FlexfecReceiveStream::Config config; 2343 webrtc::FlexfecReceiveStream::Config config;
2344 // Payload types and SSRCs come from the FlexFEC specific part of the SDP. 2344 // Payload types and SSRCs come from the FlexFEC specific part of the SDP.
2345 config.payload_type = flexfec_config_.flexfec_payload_type; 2345 config.payload_type = flexfec_config_.flexfec_payload_type;
2346 config.remote_ssrc = flexfec_config_.flexfec_ssrc; 2346 config.remote_ssrc = flexfec_config_.flexfec_ssrc;
2347 config.protected_media_ssrcs = flexfec_config_.protected_media_ssrcs; 2347 config.protected_media_ssrcs = flexfec_config_.protected_media_ssrcs;
2348 // RTCP messages and RTP header extensions apply to the entire track 2348 // RTCP messages and RTP header extensions apply to the entire track
2349 // in the SDP. 2349 // in the SDP.
2350 config.transport_cc = config_.rtp.transport_cc; 2350 config.transport_cc = config_.rtp.transport_cc;
2351 config.extensions = config_.rtp.extensions; 2351 config.rtp_header_extensions = config_.rtp.extensions;
2352 flexfec_stream_ = call_->CreateFlexfecReceiveStream(config); 2352 flexfec_stream_ = call_->CreateFlexfecReceiveStream(config);
2353 flexfec_stream_->Start(); 2353 flexfec_stream_->Start();
2354 } 2354 }
2355 } 2355 }
2356 2356
2357 void WebRtcVideoChannel2::WebRtcVideoReceiveStream::ClearDecoders( 2357 void WebRtcVideoChannel2::WebRtcVideoReceiveStream::ClearDecoders(
2358 std::vector<AllocatedDecoder>* allocated_decoders) { 2358 std::vector<AllocatedDecoder>* allocated_decoders) {
2359 for (size_t i = 0; i < allocated_decoders->size(); ++i) { 2359 for (size_t i = 0; i < allocated_decoders->size(); ++i) {
2360 if ((*allocated_decoders)[i].external) { 2360 if ((*allocated_decoders)[i].external) {
2361 external_decoder_factory_->DestroyVideoDecoder( 2361 external_decoder_factory_->DestroyVideoDecoder(
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
2573 rtx_mapping[video_codecs[i].codec.id] != 2573 rtx_mapping[video_codecs[i].codec.id] !=
2574 ulpfec_config.red_payload_type) { 2574 ulpfec_config.red_payload_type) {
2575 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; 2575 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id];
2576 } 2576 }
2577 } 2577 }
2578 2578
2579 return video_codecs; 2579 return video_codecs;
2580 } 2580 }
2581 2581
2582 } // namespace cricket 2582 } // namespace cricket
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698