OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 | 451 |
452 ChannelState channel_state_; | 452 ChannelState channel_state_; |
453 | 453 |
454 std::unique_ptr<voe::RtcEventLogProxy> event_log_proxy_; | 454 std::unique_ptr<voe::RtcEventLogProxy> event_log_proxy_; |
455 | 455 |
456 std::unique_ptr<RtpHeaderParser> rtp_header_parser_; | 456 std::unique_ptr<RtpHeaderParser> rtp_header_parser_; |
457 std::unique_ptr<RTPPayloadRegistry> rtp_payload_registry_; | 457 std::unique_ptr<RTPPayloadRegistry> rtp_payload_registry_; |
458 std::unique_ptr<ReceiveStatistics> rtp_receive_statistics_; | 458 std::unique_ptr<ReceiveStatistics> rtp_receive_statistics_; |
459 std::unique_ptr<StatisticsProxy> statistics_proxy_; | 459 std::unique_ptr<StatisticsProxy> statistics_proxy_; |
460 std::unique_ptr<RtpReceiver> rtp_receiver_; | 460 std::unique_ptr<RtpReceiver> rtp_receiver_; |
461 TelephoneEventHandler* telephone_event_handler_; | |
462 std::unique_ptr<RtpRtcp> _rtpRtcpModule; | 461 std::unique_ptr<RtpRtcp> _rtpRtcpModule; |
463 std::unique_ptr<AudioCodingModule> audio_coding_; | 462 std::unique_ptr<AudioCodingModule> audio_coding_; |
464 acm2::CodecManager codec_manager_; | 463 acm2::CodecManager codec_manager_; |
465 acm2::RentACodec rent_a_codec_; | 464 acm2::RentACodec rent_a_codec_; |
466 std::unique_ptr<AudioSinkInterface> audio_sink_; | 465 std::unique_ptr<AudioSinkInterface> audio_sink_; |
467 AudioLevel _outputAudioLevel; | 466 AudioLevel _outputAudioLevel; |
468 bool _externalTransport; | 467 bool _externalTransport; |
469 AudioFrame _audioFrame; | 468 AudioFrame _audioFrame; |
470 // Downsamples to the codec rate if necessary. | 469 // Downsamples to the codec rate if necessary. |
471 PushResampler<int16_t> input_resampler_; | 470 PushResampler<int16_t> input_resampler_; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 std::unique_ptr<RateLimiter> retransmission_rate_limiter_; | 545 std::unique_ptr<RateLimiter> retransmission_rate_limiter_; |
547 | 546 |
548 // TODO(ossu): Remove once GetAudioDecoderFactory() is no longer needed. | 547 // TODO(ossu): Remove once GetAudioDecoderFactory() is no longer needed. |
549 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; | 548 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; |
550 }; | 549 }; |
551 | 550 |
552 } // namespace voe | 551 } // namespace voe |
553 } // namespace webrtc | 552 } // namespace webrtc |
554 | 553 |
555 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ | 554 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ |
OLD | NEW |