Searched defs:ConfigHelper (Results 1 – 4 of 4) sorted by relevance
102 struct ConfigHelper { struct103 explicit ConfigHelper(bool use_null_audio_processing) in ConfigHelper() function107 ConfigHelper(rtc::scoped_refptr<MockAudioMixer> audio_mixer, in ConfigHelper() argument150 std::unique_ptr<AudioReceiveStreamImpl> CreateAudioReceiveStream() { in CreateAudioReceiveStream()159 AudioReceiveStreamInterface::Config& config() { return stream_config_; } in config()160 rtc::scoped_refptr<MockAudioMixer> audio_mixer() { return audio_mixer_; } in audio_mixer()161 MockChannelReceive* channel_receive() { return channel_receive_; } in channel_receive()163 void SetupMockForGetStats() { in SetupMockForGetStats()189 PacketRouter packet_router_;190 MockRtcEventLog event_log_;[all …]
148 struct ConfigHelper { struct149 ConfigHelper(bool audio_bwe_enabled, in ConfigHelper() function190 std::unique_ptr<internal::AudioSendStream> CreateAudioSendStream() { in CreateAudioSendStream()202 AudioSendStream::Config& config() { return stream_config_; } in config()203 MockAudioEncoderFactory& mock_encoder_factory() { in mock_encoder_factory()207 MockRtpRtcpInterface* rtp_rtcp() { return &rtp_rtcp_; } in rtp_rtcp()208 MockChannelSend* channel_send() { return channel_send_; } in channel_send()209 RtpTransportControllerSendInterface* transport() { return &rtp_transport_; } in transport()211 static void AddBweToConfig(AudioSendStream::Config* config) { in AddBweToConfig()217 void SetupDefaultChannelSend(bool audio_bwe_enabled) { in SetupDefaultChannelSend()[all …]
94 struct ConfigHelper { struct95 struct Params {100 explicit ConfigHelper(const Params& params) in ConfigHelper() function114 AudioState::Config& config() { return audio_state_config; } in config()115 rtc::scoped_refptr<AudioMixer> mixer() { return audio_mixer; } in mixer()117 mock_audio_frame_processor() { in mock_audio_frame_processor()122 AudioState::Config audio_state_config;123 rtc::scoped_refptr<AudioMixer> audio_mixer;124 FakeAsyncAudioProcessingHelper async_audio_processing_helper_;
43 class ConfigHelper(unittest.TestCase): class