Blame SOURCES/webrtc-audio-processing-0.2-big-endian.patch

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