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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 rtc::scoped_ptr<RTPPayloadRegistry> rtp_payload_registry_; | 487 rtc::scoped_ptr<RTPPayloadRegistry> rtp_payload_registry_; |
488 rtc::scoped_ptr<ReceiveStatistics> rtp_receive_statistics_; | 488 rtc::scoped_ptr<ReceiveStatistics> rtp_receive_statistics_; |
489 rtc::scoped_ptr<StatisticsProxy> statistics_proxy_; | 489 rtc::scoped_ptr<StatisticsProxy> statistics_proxy_; |
490 rtc::scoped_ptr<RtpReceiver> rtp_receiver_; | 490 rtc::scoped_ptr<RtpReceiver> rtp_receiver_; |
491 TelephoneEventHandler* telephone_event_handler_; | 491 TelephoneEventHandler* telephone_event_handler_; |
492 rtc::scoped_ptr<RtpRtcp> _rtpRtcpModule; | 492 rtc::scoped_ptr<RtpRtcp> _rtpRtcpModule; |
493 rtc::scoped_ptr<AudioCodingModule> audio_coding_; | 493 rtc::scoped_ptr<AudioCodingModule> audio_coding_; |
494 AudioLevel _outputAudioLevel; | 494 AudioLevel _outputAudioLevel; |
495 bool _externalTransport; | 495 bool _externalTransport; |
496 AudioFrame _audioFrame; | 496 AudioFrame _audioFrame; |
497 rtc::scoped_ptr<int16_t[]> mono_recording_audio_; | |
498 // Downsamples to the codec rate if necessary. | 497 // Downsamples to the codec rate if necessary. |
499 PushResampler<int16_t> input_resampler_; | 498 PushResampler<int16_t> input_resampler_; |
500 FilePlayer* _inputFilePlayerPtr; | 499 FilePlayer* _inputFilePlayerPtr; |
501 FilePlayer* _outputFilePlayerPtr; | 500 FilePlayer* _outputFilePlayerPtr; |
502 FileRecorder* _outputFileRecorderPtr; | 501 FileRecorder* _outputFileRecorderPtr; |
503 int _inputFilePlayerId; | 502 int _inputFilePlayerId; |
504 int _outputFilePlayerId; | 503 int _outputFilePlayerId; |
505 int _outputFileRecorderId; | 504 int _outputFileRecorderId; |
506 bool _outputFileRecording; | 505 bool _outputFileRecording; |
507 DtmfInbandQueue _inbandDtmfQueue; | 506 DtmfInbandQueue _inbandDtmfQueue; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
578 rtc::scoped_ptr<NetworkPredictor> network_predictor_; | 577 rtc::scoped_ptr<NetworkPredictor> network_predictor_; |
579 // An associated send channel. | 578 // An associated send channel. |
580 rtc::scoped_ptr<CriticalSectionWrapper> assoc_send_channel_lock_; | 579 rtc::scoped_ptr<CriticalSectionWrapper> assoc_send_channel_lock_; |
581 ChannelOwner associate_send_channel_ GUARDED_BY(assoc_send_channel_lock_); | 580 ChannelOwner associate_send_channel_ GUARDED_BY(assoc_send_channel_lock_); |
582 }; | 581 }; |
583 | 582 |
584 } // namespace voe | 583 } // namespace voe |
585 } // namespace webrtc | 584 } // namespace webrtc |
586 | 585 |
587 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ | 586 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ |
OLD | NEW |