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

Unified Diff: webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.cc

Issue 2774423005: Conversational Speech tool, WavReaderAdaptor and unit test (Closed)
Patch Set: comments from Karl addressed Created 3 years, 9 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/modules/audio_processing/test/conversational_speech/wavreader_factory.cc
diff --git a/webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.cc b/webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.cc
index f9d43f80702b53876e42e6a1146f5d1dacc0e190..d6665369630fa21c66826758f127be75c5f6b5e5 100644
--- a/webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.cc
+++ b/webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.cc
@@ -22,7 +22,7 @@ WavReaderFactory::~WavReaderFactory() = default;
std::unique_ptr<WavReaderInterface> WavReaderFactory::Create(
const std::string& filepath) const {
- return std::unique_ptr<WavReaderAdaptor>(new WavReaderAdaptor(filepath));
+ return CreateWavReaderAdaptor(filepath);
}
kwiberg-webrtc 2017/03/29 09:08:28 Hmm. Can you eliminate either WavReaderFactory::Cr
AleBzk 2017/03/29 09:34:43 Right. I can move everything into the factory.
} // namespace conversational_speech

Powered by Google App Engine
This is Rietveld 408576698