Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 466 void ConfigureCodecs(const std::vector<VideoCodecSettings>& recv_codecs, | 466 void ConfigureCodecs(const std::vector<VideoCodecSettings>& recv_codecs, |
| 467 std::vector<AllocatedDecoder>* old_codecs); | 467 std::vector<AllocatedDecoder>* old_codecs); |
| 468 AllocatedDecoder CreateOrReuseVideoDecoder( | 468 AllocatedDecoder CreateOrReuseVideoDecoder( |
| 469 std::vector<AllocatedDecoder>* old_decoder, | 469 std::vector<AllocatedDecoder>* old_decoder, |
| 470 const VideoCodec& codec); | 470 const VideoCodec& codec); |
| 471 void ClearDecoders(std::vector<AllocatedDecoder>* allocated_decoders); | 471 void ClearDecoders(std::vector<AllocatedDecoder>* allocated_decoders); |
| 472 | 472 |
| 473 std::string GetCodecNameFromPayloadType(int payload_type); | 473 std::string GetCodecNameFromPayloadType(int payload_type); |
| 474 | 474 |
| 475 webrtc::Call* const call_; | 475 webrtc::Call* const call_; |
| 476 const std::string receive_stream_id_; | |
|
pthatcher1
2016/06/15 19:40:00
This should just be "id_".
| |
| 476 const std::vector<uint32_t> ssrcs_; | 477 const std::vector<uint32_t> ssrcs_; |
| 477 const std::vector<SsrcGroup> ssrc_groups_; | 478 const std::vector<SsrcGroup> ssrc_groups_; |
| 478 | 479 |
| 479 webrtc::VideoReceiveStream* stream_; | 480 webrtc::VideoReceiveStream* stream_; |
| 480 const bool default_stream_; | 481 const bool default_stream_; |
| 481 webrtc::VideoReceiveStream::Config config_; | 482 webrtc::VideoReceiveStream::Config config_; |
| 482 bool red_disabled_by_remote_side_; | 483 bool red_disabled_by_remote_side_; |
| 483 | 484 |
| 484 WebRtcVideoDecoderFactory* const external_decoder_factory_; | 485 WebRtcVideoDecoderFactory* const external_decoder_factory_; |
| 485 std::vector<AllocatedDecoder> allocated_decoders_; | 486 std::vector<AllocatedDecoder> allocated_decoders_; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 549 // send_params/recv_params, rtp_extensions, options, etc. | 550 // send_params/recv_params, rtp_extensions, options, etc. |
| 550 VideoSendParameters send_params_; | 551 VideoSendParameters send_params_; |
| 551 VideoOptions default_send_options_; | 552 VideoOptions default_send_options_; |
| 552 VideoRecvParameters recv_params_; | 553 VideoRecvParameters recv_params_; |
| 553 bool red_disabled_by_remote_side_; | 554 bool red_disabled_by_remote_side_; |
| 554 }; | 555 }; |
| 555 | 556 |
| 556 } // namespace cricket | 557 } // namespace cricket |
| 557 | 558 |
| 558 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ | 559 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ |
| OLD | NEW |