/external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/ |
D | before_streaming_fixture.cc | 14 : channel_(voe_base_->CreateChannel()), in BeforeStreamingFixture() 30 voe_base_->DeleteChannel(channel_); in ~BeforeStreamingFixture() 48 EXPECT_EQ(0, voe_base_->StopSend(channel_)); in PausePlaying() 49 EXPECT_EQ(0, voe_base_->StopPlayout(channel_)); in PausePlaying() 50 EXPECT_EQ(0, voe_base_->StopReceive(channel_)); in PausePlaying() 54 EXPECT_EQ(0, voe_base_->StartReceive(channel_)); in ResumePlaying() 55 EXPECT_EQ(0, voe_base_->StartPlayout(channel_)); in ResumePlaying() 56 EXPECT_EQ(0, voe_base_->StartSend(channel_)); in ResumePlaying()
|
D | after_initialization_fixture.cc | 30 EXPECT_EQ(0, voe_base_->Init(NULL, audioproc)); in AfterInitializationFixture() 31 EXPECT_EQ(0, voe_base_->RegisterVoiceEngineObserver(*error_observer_)); in AfterInitializationFixture() 35 EXPECT_EQ(0, voe_base_->DeRegisterVoiceEngineObserver()); in ~AfterInitializationFixture()
|
D | before_initialization_fixture.cc | 19 voe_base_ = webrtc::VoEBase::GetInterface(voice_engine_); in BeforeInitializationFixture() 34 voe_base_->Release(); in ~BeforeInitializationFixture()
|
D | before_initialization_fixture.h | 58 webrtc::VoEBase* voe_base_; variable
|
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/ |
D | rtp_rtcp_test.cc | 63 second_channel_ = voe_base_->CreateChannel(); in SetUp() 70 EXPECT_EQ(0, voe_base_->StartReceive(second_channel_)); in SetUp() 71 EXPECT_EQ(0, voe_base_->StartPlayout(second_channel_)); in SetUp() 73 EXPECT_EQ(0, voe_base_->StartSend(second_channel_)); in SetUp() 81 voe_base_->DeleteChannel(second_channel_); in TearDown() 106 EXPECT_EQ(0, voe_base_->StopSend(channel_)); in TEST_F() 108 EXPECT_EQ(0, voe_base_->StartSend(channel_)); in TEST_F()
|
D | dtmf_test.cc | 67 EXPECT_EQ(0, voe_base_->StopSend(channel_)); in TEST_F() 68 EXPECT_EQ(0, voe_base_->StopPlayout(channel_)); in TEST_F() 69 EXPECT_EQ(0, voe_base_->StopReceive(channel_)); in TEST_F() 71 EXPECT_EQ(0, voe_base_->StartReceive(channel_)); in TEST_F() 72 EXPECT_EQ(0, voe_base_->StartPlayout(channel_)); in TEST_F() 73 EXPECT_EQ(0, voe_base_->StartSend(channel_)); in TEST_F()
|
D | mixing_test.cc | 74 local_streams[i] = voe_base_->CreateChannel(); in RunMixingTest() 82 remote_streams[i] = voe_base_->CreateChannel(); in RunMixingTest() 147 EXPECT_EQ(0, voe_base_->StartPlayout(streams[i])); in StartLocalStreams() 155 EXPECT_EQ(0, voe_base_->StopPlayout(streams[i])); in StopLocalStreams() 156 EXPECT_EQ(0, voe_base_->DeleteChannel(streams[i])); in StopLocalStreams() 188 EXPECT_EQ(0, voe_base_->StartReceive(stream)); in StartRemoteStream() 189 EXPECT_EQ(0, voe_base_->StartPlayout(stream)); in StartRemoteStream() 191 EXPECT_EQ(0, voe_base_->StartSend(stream)); in StartRemoteStream() 198 EXPECT_EQ(0, voe_base_->StopSend(streams[i])); in StopRemoteStreams() 199 EXPECT_EQ(0, voe_base_->StopPlayout(streams[i])); in StopRemoteStreams() [all …]
|
D | video_sync_test.cc | 89 EXPECT_EQ(0, voe_base_->StopSend(channel_)); in TEST_F() 94 EXPECT_EQ(0, voe_base_->StopSend(channel_)); in TEST_F() 102 EXPECT_EQ(0, voe_base_->StopSend(channel_)); in TEST_F() 105 EXPECT_EQ(0, voe_base_->StartSend(channel_)); in TEST_F() 114 EXPECT_EQ(0, voe_base_->StopSend(channel_)); in TEST_F() 117 EXPECT_EQ(0, voe_base_->StartSend(channel_)); in TEST_F()
|
D | file_before_streaming_test.cc | 32 channel_ = voe_base_->CreateChannel(); in SetUp() 36 voe_base_->DeleteChannel(channel_); in TearDown() 113 EXPECT_EQ(0, voe_base_->StartPlayout(channel_)); in TEST_F() 130 EXPECT_EQ(0, voe_base_->StopPlayout(channel_)); in TEST_F()
|
D | rtp_rtcp_before_streaming_test.cc | 25 EXPECT_THAT(channel_ = voe_base_->CreateChannel(), Not(Lt(0))); in SetUp() 29 EXPECT_EQ(0, voe_base_->DeleteChannel(channel_)); in TearDown()
|
D | codec_before_streaming_test.cc | 21 channel_ = voe_base_->CreateChannel(); in SetUp() 25 voe_base_->DeleteChannel(channel_); in TearDown()
|
D | voe_base_misc_test.cc | 23 EXPECT_EQ(0, voe_base_->GetVersion(char_buffer)); in TEST_F()
|
D | hardware_before_streaming_test.cc | 25 EXPECT_EQ(VE_ALREADY_INITED, voe_base_->LastError()); in TEST_F()
|
/external/webrtc/webrtc/voice_engine/test/auto_test/ |
D | voe_test_defines.h | 114 TEST_LOG_ERROR("Error code: %i\n",voe_base_->LastError()); \ 119 int err = voe_base_->LastError(); \ 135 TEST_LOG_ERROR("Error code: %i\n", voe_base_->LastError()); \ 142 int err = voe_base_->LastError(); \
|
D | voe_standard_test.cc | 97 voe_base_(0), in VoETestManager() 131 voe_base_ = VoEBase::GetInterface(voice_engine_); in GetInterfaces() 166 if (voe_base_) { in ReleaseInterfaces() 167 voe_base_->Release(); in ReleaseInterfaces() 168 voe_base_ = NULL; in ReleaseInterfaces()
|
D | voe_standard_test.h | 138 return voe_base_; in BasePtr() 186 VoEBase* voe_base_; variable
|
/external/webrtc/webrtc/voice_engine/test/auto_test/extended/ |
D | agc_config_test.cc | 41 EXPECT_EQ(VE_APM_ERROR, voe_base_->LastError()); in TEST_F() 47 EXPECT_EQ(VE_APM_ERROR, voe_base_->LastError()); in TEST_F() 84 EXPECT_EQ(VE_APM_ERROR, voe_base_->LastError()); in TEST_F() 90 EXPECT_EQ(VE_APM_ERROR, voe_base_->LastError()); in TEST_F()
|
D | ec_metrics_test.cc | 64 EXPECT_EQ(VE_APM_ERROR, voe_base_->LastError()); in TEST_F() 72 EXPECT_EQ(VE_APM_ERROR, voe_base_->LastError()); in TEST_F()
|
/external/webrtc/webrtc/audio/ |
D | audio_state.cc | 22 : config_(config), voe_base_(config.voice_engine) { in AudioState() 25 RTC_CHECK(voe_base_->RegisterVoiceEngineObserver(*this) != -1); in AudioState() 30 voe_base_->DeRegisterVoiceEngineObserver(); in ~AudioState()
|
D | audio_state.h | 46 ScopedVoEInterface<VoEBase> voe_base_; variable
|