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

Unified Diff: webrtc/modules/audio_processing/test/conversational_speech/wavreader_adaptor.h

Issue 2774423005: Conversational Speech tool, WavReaderAdaptor and unit test (Closed)
Patch Set: 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_adaptor.h
diff --git a/webrtc/modules/audio_processing/test/conversational_speech/wavreader_adaptor.h b/webrtc/modules/audio_processing/test/conversational_speech/wavreader_adaptor.h
index 54894934dbc5f4b5fd84d88afeff680a649810a8..530aabaa69a2f0b349df5590d3e30f84a6506965 100644
--- a/webrtc/modules/audio_processing/test/conversational_speech/wavreader_adaptor.h
+++ b/webrtc/modules/audio_processing/test/conversational_speech/wavreader_adaptor.h
@@ -16,6 +16,7 @@
#include <cstddef>
#include <string>
+#include "webrtc/common_audio/wav_file.h"
#include "webrtc/typedefs.h"
namespace webrtc {
@@ -33,6 +34,8 @@ class WavReaderAdaptor : public WavReaderInterface {
int sample_rate() const override;
size_t num_channels() const override;
size_t num_samples() const override;
+ private:
+ WavReader wav_reader_;
kwiberg-webrtc 2017/03/28 17:52:45 When you add this private member variable, you hav
AleBzk 2017/03/29 08:56:45 Done.
};
} // namespace conversational_speech

Powered by Google App Engine
This is Rietveld 408576698