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_; |
461 std::unique_ptr<RtpRtcp> _rtpRtcpModule; | 462 std::unique_ptr<RtpRtcp> _rtpRtcpModule; |
462 std::unique_ptr<AudioCodingModule> audio_coding_; | 463 std::unique_ptr<AudioCodingModule> audio_coding_; |
463 acm2::CodecManager codec_manager_; | 464 acm2::CodecManager codec_manager_; |
464 acm2::RentACodec rent_a_codec_; | 465 acm2::RentACodec rent_a_codec_; |
465 std::unique_ptr<AudioSinkInterface> audio_sink_; | 466 std::unique_ptr<AudioSinkInterface> audio_sink_; |
466 AudioLevel _outputAudioLevel; | 467 AudioLevel _outputAudioLevel; |
467 bool _externalTransport; | 468 bool _externalTransport; |
468 AudioFrame _audioFrame; | 469 AudioFrame _audioFrame; |
469 // Downsamples to the codec rate if necessary. | 470 // Downsamples to the codec rate if necessary. |
470 PushResampler<int16_t> input_resampler_; | 471 PushResampler<int16_t> input_resampler_; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 std::unique_ptr<RateLimiter> retransmission_rate_limiter_; | 546 std::unique_ptr<RateLimiter> retransmission_rate_limiter_; |
546 | 547 |
547 // TODO(ossu): Remove once GetAudioDecoderFactory() is no longer needed. | 548 // TODO(ossu): Remove once GetAudioDecoderFactory() is no longer needed. |
548 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; | 549 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; |
549 }; | 550 }; |
550 | 551 |
551 } // namespace voe | 552 } // namespace voe |
552 } // namespace webrtc | 553 } // namespace webrtc |
553 | 554 |
554 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ | 555 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ |
OLD | NEW |