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

Unified Diff: webrtc/voice_engine/test/auto_test/voe_standard_test.cc

Issue 2672583002: Remove VoEVideoSync interface. (Closed)
Patch Set: rebase Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/voice_engine/test/auto_test/voe_standard_test.cc
diff --git a/webrtc/voice_engine/test/auto_test/voe_standard_test.cc b/webrtc/voice_engine/test/auto_test/voe_standard_test.cc
index fdf453a90a02d799d3dd1819e90dd640f7f430e8..589e1a59132e3da4651b3c4d8d0c901b81c01037 100644
--- a/webrtc/voice_engine/test/auto_test/voe_standard_test.cc
+++ b/webrtc/voice_engine/test/auto_test/voe_standard_test.cc
@@ -54,8 +54,6 @@ void SubAPIManager::DisplayStatus() const {
TEST_LOG(" Network\n");
if (_rtp_rtcp)
TEST_LOG(" RTP_RTCP\n");
- if (_videoSync)
- TEST_LOG(" VideoSync\n");
if (_volumeControl)
TEST_LOG(" VolumeControl\n");
if (_apm)
@@ -78,8 +76,6 @@ void SubAPIManager::DisplayStatus() const {
TEST_LOG(" Network\n");
if (!_rtp_rtcp)
TEST_LOG(" RTP_RTCP\n");
- if (!_videoSync)
- TEST_LOG(" VideoSync\n");
if (!_volumeControl)
TEST_LOG(" VolumeControl\n");
if (!_apm)
@@ -98,7 +94,6 @@ VoETestManager::VoETestManager()
voe_network_(0),
voe_neteq_stats_(NULL),
voe_rtp_rtcp_(0),
- voe_vsync_(0),
voe_volume_control_(0),
voe_apm_(0) {
}
@@ -128,9 +123,6 @@ void VoETestManager::GetInterfaces() {
voe_apm_ = VoEAudioProcessing::GetInterface(voice_engine_);
voe_network_ = VoENetwork::GetInterface(voice_engine_);
voe_file_ = VoEFile::GetInterface(voice_engine_);
-#ifdef _TEST_VIDEO_SYNC_
- voe_vsync_ = VoEVideoSync::GetInterface(voice_engine_);
-#endif
voe_hardware_ = VoEHardware::GetInterface(voice_engine_);
// Set the audio layer to use in all tests
if (voe_hardware_) {
@@ -181,12 +173,6 @@ int VoETestManager::ReleaseInterfaces() {
voe_file_->Release();
voe_file_ = NULL;
}
-#ifdef _TEST_VIDEO_SYNC_
- if (voe_vsync_) {
- voe_vsync_->Release();
- voe_vsync_ = NULL;
- }
-#endif
if (voe_hardware_) {
voe_hardware_->Release();
voe_hardware_ = NULL;

Powered by Google App Engine
This is Rietveld 408576698