aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common_audio/wav_file.cc9
-rw-r--r--common_audio/wav_file.h3
2 files changed, 0 insertions, 12 deletions
diff --git a/common_audio/wav_file.cc b/common_audio/wav_file.cc
index 1217e40ba7..e96b39df1b 100644
--- a/common_audio/wav_file.cc
+++ b/common_audio/wav_file.cc
@@ -13,7 +13,6 @@
#include <algorithm>
#include <cstdio>
#include <limits>
-#include <sstream>
#include "common_audio/include/audio_util.h"
#include "common_audio/wav_header.h"
@@ -39,14 +38,6 @@ class ReadableWavFile : public ReadableWav {
FILE* file_;
};
-std::string WavFile::FormatAsString() const {
- std::ostringstream s;
- s << "Sample rate: " << sample_rate() << " Hz, Channels: " << num_channels()
- << ", Duration: "
- << (1.f * num_samples()) / (num_channels() * sample_rate()) << " s";
- return s.str();
-}
-
WavReader::WavReader(const std::string& filename)
: WavReader(rtc::OpenPlatformFileReadOnly(filename)) {}
diff --git a/common_audio/wav_file.h b/common_audio/wav_file.h
index befe73339a..69c241aad6 100644
--- a/common_audio/wav_file.h
+++ b/common_audio/wav_file.h
@@ -30,9 +30,6 @@ class WavFile {
virtual int sample_rate() const = 0;
virtual size_t num_channels() const = 0;
virtual size_t num_samples() const = 0;
-
- // Returns a human-readable string containing the audio format.
- std::string FormatAsString() const;
};
// Simple C++ class for writing 16-bit PCM WAV files. All error handling is