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

Side by Side Diff: webrtc/voice_engine/channel.h

Issue 2357583002: Remove unnecessary interface TelephoneEventHandler (Closed)
Patch Set: rebase Created 4 years, 3 months 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
« no previous file with comments | « webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc ('k') | webrtc/voice_engine/channel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc ('k') | webrtc/voice_engine/channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698