Home
last modified time | relevance | path

Searched refs:GetPlayoutTimestamp (Results 1 – 19 of 19) sorted by relevance

/external/webrtc/webrtc/voice_engine/
Dvoe_video_sync_impl.cc46 int VoEVideoSyncImpl::GetPlayoutTimestamp(int channel, in GetPlayoutTimestamp() function in webrtc::VoEVideoSyncImpl
59 return channel_ptr->GetPlayoutTimestamp(timestamp); in GetPlayoutTimestamp()
Dvoe_video_sync_impl.h36 int GetPlayoutTimestamp(int channel, unsigned int& timestamp) override;
Dchannel.h292 int GetPlayoutTimestamp(unsigned int& timestamp);
Dchannel.cc3618 int Channel::GetPlayoutTimestamp(unsigned int& timestamp) { in GetPlayoutTimestamp() function in webrtc::voe::Channel
/external/webrtc/webrtc/voice_engine/include/
Dvoe_video_sync.h86 virtual int GetPlayoutTimestamp(int channel, unsigned int& timestamp) = 0;
/external/webrtc/webrtc/modules/audio_coding/acm2/
Dinitial_delay_manager.h70 bool GetPlayoutTimestamp(uint32_t* playout_timestamp);
Dacm_receiver.cc291 if (GetPlayoutTimestamp(&playout_timestamp)) { in GetAudio()
429 bool AcmReceiver::GetPlayoutTimestamp(uint32_t* timestamp) { in GetPlayoutTimestamp() function in webrtc::acm2::AcmReceiver
430 return neteq_->GetPlayoutTimestamp(timestamp); in GetPlayoutTimestamp()
Dacm_receiver.h222 bool GetPlayoutTimestamp(uint32_t* timestamp);
Dinitial_delay_manager.cc222 bool InitialDelayManager::GetPlayoutTimestamp(uint32_t* playout_timestamp) { in GetPlayoutTimestamp() function in webrtc::acm2::InitialDelayManager
Dinitial_delay_manager_unittest.cc362 EXPECT_TRUE(manager_->GetPlayoutTimestamp(&actual_playout_timestamp)); in TEST_F()
Daudio_coding_module_impl.cc789 return receiver_.GetPlayoutTimestamp(timestamp) ? 0 : -1; in PlayoutTimestamp()
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/
Dvideo_sync_test.cc77 EXPECT_EQ(-1, voe_vsync_->GetPlayoutTimestamp(channel_, ignored)); in TEST_F()
/external/webrtc/webrtc/modules/audio_coding/neteq/include/
Dneteq.h259 virtual bool GetPlayoutTimestamp(uint32_t* timestamp) = 0;
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dneteq_impl_unittest.cc487 EXPECT_TRUE(neteq_->GetPlayoutTimestamp(&timestamp)); in TEST_F()
758 EXPECT_TRUE(neteq_->GetPlayoutTimestamp(&last_timestamp)); in TEST_F()
764 EXPECT_TRUE(neteq_->GetPlayoutTimestamp(&timestamp)); in TEST_F()
768 EXPECT_TRUE(neteq_->GetPlayoutTimestamp(&timestamp)); in TEST_F()
787 EXPECT_TRUE(neteq_->GetPlayoutTimestamp(&timestamp)); in TEST_F()
Dneteq_impl.h167 bool GetPlayoutTimestamp(uint32_t* timestamp) override;
Dneteq_unittest.cc1595 EXPECT_TRUE(neteq_->GetPlayoutTimestamp(&playout_timestamp)); in PlayoutTimestamp()
Dneteq_impl.cc364 bool NetEqImpl::GetPlayoutTimestamp(uint32_t* timestamp) { in GetPlayoutTimestamp() function in webrtc::NetEqImpl
/external/webrtc/webrtc/test/
Dmock_voice_engine.h311 MOCK_METHOD2(GetPlayoutTimestamp, int(int channel, unsigned int& timestamp));
/external/webrtc/webrtc/call/
Dcall_perf_tests.cc142 if (voe_sync_->GetPlayoutTimestamp(voe_channel_, playout_timestamp) != 0) in RenderFrame()