Removing AudioCoding duplicate tests
Reverting to using one version of ACM in ACM tests.
BUG=2996
R=turaj@webrtc.org
Review URL: https://webrtc-codereview.appspot.com/12079004
git-svn-id: http://webrtc.googlecode.com/svn/trunk@5924 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/audio_coding/main/test/TestStereo.cc b/webrtc/modules/audio_coding/main/test/TestStereo.cc
index b26334c..f058967 100644
--- a/webrtc/modules/audio_coding/main/test/TestStereo.cc
+++ b/webrtc/modules/audio_coding/main/test/TestStereo.cc
@@ -15,7 +15,6 @@
#include <string>
#include "gtest/gtest.h"
-#include "webrtc/common.h"
#include "webrtc/common_types.h"
#include "webrtc/engine_configurations.h"
#include "webrtc/modules/audio_coding/main/interface/audio_coding_module_typedefs.h"
@@ -108,9 +107,9 @@
lost_packet_ = lost;
}
-TestStereo::TestStereo(int test_mode, const Config& config)
- : acm_a_(config.Get<AudioCodingModuleFactory>().Create(0)),
- acm_b_(config.Get<AudioCodingModuleFactory>().Create(1)),
+TestStereo::TestStereo(int test_mode)
+ : acm_a_(AudioCodingModule::Create(0)),
+ acm_b_(AudioCodingModule::Create(1)),
channel_a2b_(NULL),
test_cntr_(0),
pack_size_samp_(0),