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

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

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.h
diff --git a/webrtc/voice_engine/test/auto_test/voe_standard_test.h b/webrtc/voice_engine/test/auto_test/voe_standard_test.h
index 6801877c76223fdef6b6656d6984c6af4573381c..ece57f225fb2485da40cc8abcfc951f392a40d67 100644
--- a/webrtc/voice_engine/test/auto_test/voe_standard_test.h
+++ b/webrtc/voice_engine/test/auto_test/voe_standard_test.h
@@ -27,7 +27,6 @@
#include "webrtc/voice_engine/include/voe_external_media.h"
#include "webrtc/voice_engine/include/voe_hardware.h"
#include "webrtc/voice_engine/include/voe_network.h"
-#include "webrtc/voice_engine/include/voe_video_sync.h"
#include "webrtc/voice_engine/include/voe_volume_control.h"
namespace webrtc {
@@ -53,7 +52,6 @@ class SubAPIManager {
_netEqStats(false),
_network(false),
_rtp_rtcp(false),
- _videoSync(false),
_volumeControl(false),
_apm(false) {
_codec = true;
@@ -63,7 +61,6 @@ class SubAPIManager {
_netEqStats = true;
_network = true;
_rtp_rtcp = true;
- _videoSync = true;
_volumeControl = true;
_apm = true;
}
@@ -73,7 +70,7 @@ class SubAPIManager {
private:
bool _base, _codec;
bool _externalMedia, _file, _hardware;
- bool _netEqStats, _network, _rtp_rtcp, _videoSync, _volumeControl, _apm;
+ bool _netEqStats, _network, _rtp_rtcp, _volumeControl, _apm;
};
class VoETestManager {
@@ -124,10 +121,6 @@ class VoETestManager {
return voe_hardware_;
}
- VoEVideoSync* VideoSyncPtr() const {
- return voe_vsync_;
- }
-
VoEExternalMedia* ExternalMediaPtr() const {
return voe_xmedia_;
}
@@ -148,7 +141,6 @@ class VoETestManager {
VoENetwork* voe_network_;
VoENetEqStats* voe_neteq_stats_;
VoERTP_RTCP* voe_rtp_rtcp_;
- VoEVideoSync* voe_vsync_;
VoEVolumeControl* voe_volume_control_;
VoEAudioProcessing* voe_apm_;
};

Powered by Google App Engine
This is Rietveld 408576698