| 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_;
|
| };
|
|
|