|
|
a14855 |
diff -up webrtc-audio-processing-0.2/webrtc/common_audio/wav_file.cc.than webrtc-audio-processing-0.2/webrtc/common_audio/wav_file.cc
|
|
|
a14855 |
--- webrtc-audio-processing-0.2/webrtc/common_audio/wav_file.cc.than 2016-05-24 08:28:45.749940095 -0400
|
|
|
a14855 |
+++ webrtc-audio-processing-0.2/webrtc/common_audio/wav_file.cc 2016-05-24 08:50:30.361020010 -0400
|
|
|
a14855 |
@@ -64,9 +64,6 @@ WavReader::~WavReader() {
|
|
|
a14855 |
}
|
|
|
a14855 |
|
|
|
a14855 |
size_t WavReader::ReadSamples(size_t num_samples, int16_t* samples) {
|
|
|
a14855 |
-#ifndef WEBRTC_ARCH_LITTLE_ENDIAN
|
|
|
a14855 |
-#error "Need to convert samples to big-endian when reading from WAV file"
|
|
|
a14855 |
-#endif
|
|
|
a14855 |
// There could be metadata after the audio; ensure we don't read it.
|
|
|
a14855 |
num_samples = std::min(rtc::checked_cast<uint32_t>(num_samples),
|
|
|
a14855 |
num_samples_remaining_);
|
|
|
a14855 |
@@ -76,6 +73,12 @@ size_t WavReader::ReadSamples(size_t num
|
|
|
a14855 |
RTC_CHECK(read == num_samples || feof(file_handle_));
|
|
|
a14855 |
RTC_CHECK_LE(read, num_samples_remaining_);
|
|
|
a14855 |
num_samples_remaining_ -= rtc::checked_cast<uint32_t>(read);
|
|
|
a14855 |
+#ifndef WEBRTC_ARCH_LITTLE_ENDIAN
|
|
|
a14855 |
+ //convert to big-endian
|
|
|
a14855 |
+ for(size_t idx = 0; idx < num_samples; idx++) {
|
|
|
a14855 |
+ samples[idx] = (samples[idx]<<8) | (samples[idx]>>8);
|
|
|
a14855 |
+ }
|
|
|
a14855 |
+#endif
|
|
|
a14855 |
return read;
|
|
|
a14855 |
}
|
|
|
a14855 |
|
|
|
a14855 |
@@ -120,10 +123,17 @@ WavWriter::~WavWriter() {
|
|
|
a14855 |
|
|
|
a14855 |
void WavWriter::WriteSamples(const int16_t* samples, size_t num_samples) {
|
|
|
a14855 |
#ifndef WEBRTC_ARCH_LITTLE_ENDIAN
|
|
|
a14855 |
-#error "Need to convert samples to little-endian when writing to WAV file"
|
|
|
a14855 |
-#endif
|
|
|
a14855 |
+ int16_t * le_samples = new int16_t[num_samples];
|
|
|
a14855 |
+ for(size_t idx = 0; idx < num_samples; idx++) {
|
|
|
a14855 |
+ le_samples[idx] = (samples[idx]<<8) | (samples[idx]>>8);
|
|
|
a14855 |
+ }
|
|
|
a14855 |
+ const size_t written =
|
|
|
a14855 |
+ fwrite(le_samples, sizeof(*le_samples), num_samples, file_handle_);
|
|
|
a14855 |
+ delete []le_samples;
|
|
|
a14855 |
+#else
|
|
|
a14855 |
const size_t written =
|
|
|
a14855 |
fwrite(samples, sizeof(*samples), num_samples, file_handle_);
|
|
|
a14855 |
+#endif
|
|
|
a14855 |
RTC_CHECK_EQ(num_samples, written);
|
|
|
a14855 |
num_samples_ += static_cast<uint32_t>(written);
|
|
|
a14855 |
RTC_CHECK(written <= std::numeric_limits<uint32_t>::max() ||
|
|
|
a14855 |
diff -up webrtc-audio-processing-0.2/webrtc/common_audio/wav_header.cc.than webrtc-audio-processing-0.2/webrtc/common_audio/wav_header.cc
|
|
|
a14855 |
--- webrtc-audio-processing-0.2/webrtc/common_audio/wav_header.cc.than 2016-05-24 08:50:52.591379263 -0400
|
|
|
a14855 |
+++ webrtc-audio-processing-0.2/webrtc/common_audio/wav_header.cc 2016-05-24 08:52:08.552606848 -0400
|
|
|
a14855 |
@@ -129,7 +129,39 @@ static inline std::string ReadFourCC(uin
|
|
|
a14855 |
return std::string(reinterpret_cast<char*>(&x), 4);
|
|
|
a14855 |
}
|
|
|
a14855 |
#else
|
|
|
a14855 |
-#error "Write be-to-le conversion functions"
|
|
|
a14855 |
+static inline void WriteLE16(uint16_t* f, uint16_t x) {
|
|
|
a14855 |
+ *f = ((x << 8) & 0xff00) | ( ( x >> 8) & 0x00ff);
|
|
|
a14855 |
+}
|
|
|
a14855 |
+
|
|
|
a14855 |
+static inline void WriteLE32(uint32_t* f, uint32_t x) {
|
|
|
a14855 |
+ *f = ( (x & 0x000000ff) << 24 )
|
|
|
a14855 |
+ | ((x & 0x0000ff00) << 8)
|
|
|
a14855 |
+ | ((x & 0x00ff0000) >> 8)
|
|
|
a14855 |
+ | ((x & 0xff000000) >> 24 );
|
|
|
a14855 |
+}
|
|
|
a14855 |
+
|
|
|
a14855 |
+static inline void WriteFourCC(uint32_t* f, char a, char b, char c, char d) {
|
|
|
a14855 |
+ *f = (static_cast<uint32_t>(a) << 24 )
|
|
|
a14855 |
+ | (static_cast<uint32_t>(b) << 16)
|
|
|
a14855 |
+ | (static_cast<uint32_t>(c) << 8)
|
|
|
a14855 |
+ | (static_cast<uint32_t>(d) );
|
|
|
a14855 |
+}
|
|
|
a14855 |
+
|
|
|
a14855 |
+static inline uint16_t ReadLE16(uint16_t x) {
|
|
|
a14855 |
+ return (( x & 0x00ff) << 8 )| ((x & 0xff00)>>8);
|
|
|
a14855 |
+}
|
|
|
a14855 |
+
|
|
|
a14855 |
+static inline uint32_t ReadLE32(uint32_t x) {
|
|
|
a14855 |
+ return ( (x & 0x000000ff) << 24 )
|
|
|
a14855 |
+ | ( (x & 0x0000ff00) << 8 )
|
|
|
a14855 |
+ | ( (x & 0x00ff0000) >> 8)
|
|
|
a14855 |
+ | ( (x & 0xff000000) >> 24 );
|
|
|
a14855 |
+}
|
|
|
a14855 |
+
|
|
|
a14855 |
+static inline std::string ReadFourCC(uint32_t x) {
|
|
|
a14855 |
+ x = ReadLE32(x);
|
|
|
a14855 |
+ return std::string(reinterpret_cast<char*>(&x), 4);
|
|
|
a14855 |
+}
|
|
|
a14855 |
#endif
|
|
|
a14855 |
|
|
|
a14855 |
static inline uint32_t RiffChunkSize(uint32_t bytes_in_payload) {
|