kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | // Based on the WAV file format documentation at |
| 12 | // https://ccrma.stanford.edu/courses/422/projects/WaveFormat/ and |
| 13 | // http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/WAVE.html |
| 14 | |
| 15 | #include "webrtc/common_audio/wav_header.h" |
| 16 | |
| 17 | #include <algorithm> |
| 18 | #include <cstring> |
| 19 | #include <limits> |
| 20 | |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 21 | #include "webrtc/base/checks.h" |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 22 | #include "webrtc/common_audio/include/audio_util.h" |
| 23 | |
| 24 | namespace webrtc { |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 25 | namespace { |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 26 | |
| 27 | struct ChunkHeader { |
| 28 | uint32_t ID; |
| 29 | uint32_t Size; |
| 30 | }; |
| 31 | COMPILE_ASSERT(sizeof(ChunkHeader) == 8, chunk_header_size); |
| 32 | |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 33 | // We can't nest this definition in WavHeader, because VS2013 gives an error |
| 34 | // on sizeof(WavHeader::fmt): "error C2070: 'unknown': illegal sizeof operand". |
| 35 | struct FmtSubchunk { |
| 36 | ChunkHeader header; |
| 37 | uint16_t AudioFormat; |
| 38 | uint16_t NumChannels; |
| 39 | uint32_t SampleRate; |
| 40 | uint32_t ByteRate; |
| 41 | uint16_t BlockAlign; |
| 42 | uint16_t BitsPerSample; |
| 43 | }; |
| 44 | COMPILE_ASSERT(sizeof(FmtSubchunk) == 24, fmt_subchunk_size); |
| 45 | const uint32_t kFmtSubchunkSize = sizeof(FmtSubchunk) - sizeof(ChunkHeader); |
| 46 | |
| 47 | struct WavHeader { |
| 48 | struct { |
| 49 | ChunkHeader header; |
| 50 | uint32_t Format; |
| 51 | } riff; |
| 52 | FmtSubchunk fmt; |
| 53 | struct { |
| 54 | ChunkHeader header; |
| 55 | } data; |
| 56 | }; |
| 57 | COMPILE_ASSERT(sizeof(WavHeader) == kWavHeaderSize, no_padding_in_header); |
| 58 | |
| 59 | } // namespace |
| 60 | |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 61 | bool CheckWavParameters(int num_channels, |
| 62 | int sample_rate, |
| 63 | WavFormat format, |
| 64 | int bytes_per_sample, |
| 65 | uint32_t num_samples) { |
| 66 | // num_channels, sample_rate, and bytes_per_sample must be positive, must fit |
| 67 | // in their respective fields, and their product must fit in the 32-bit |
| 68 | // ByteRate field. |
| 69 | if (num_channels <= 0 || sample_rate <= 0 || bytes_per_sample <= 0) |
| 70 | return false; |
| 71 | if (static_cast<uint64_t>(sample_rate) > std::numeric_limits<uint32_t>::max()) |
| 72 | return false; |
| 73 | if (static_cast<uint64_t>(num_channels) > |
| 74 | std::numeric_limits<uint16_t>::max()) |
| 75 | return false; |
| 76 | if (static_cast<uint64_t>(bytes_per_sample) * 8 > |
| 77 | std::numeric_limits<uint16_t>::max()) |
| 78 | return false; |
| 79 | if (static_cast<uint64_t>(sample_rate) * num_channels * bytes_per_sample > |
| 80 | std::numeric_limits<uint32_t>::max()) |
| 81 | return false; |
| 82 | |
| 83 | // format and bytes_per_sample must agree. |
| 84 | switch (format) { |
| 85 | case kWavFormatPcm: |
| 86 | // Other values may be OK, but for now we're conservative: |
| 87 | if (bytes_per_sample != 1 && bytes_per_sample != 2) |
| 88 | return false; |
| 89 | break; |
| 90 | case kWavFormatALaw: |
| 91 | case kWavFormatMuLaw: |
| 92 | if (bytes_per_sample != 1) |
| 93 | return false; |
| 94 | break; |
| 95 | default: |
| 96 | return false; |
| 97 | } |
| 98 | |
| 99 | // The number of bytes in the file, not counting the first ChunkHeader, must |
| 100 | // be less than 2^32; otherwise, the ChunkSize field overflows. |
| 101 | const uint32_t max_samples = |
| 102 | (std::numeric_limits<uint32_t>::max() |
| 103 | - (kWavHeaderSize - sizeof(ChunkHeader))) / |
| 104 | bytes_per_sample; |
| 105 | if (num_samples > max_samples) |
| 106 | return false; |
| 107 | |
| 108 | // Each channel must have the same number of samples. |
| 109 | if (num_samples % num_channels != 0) |
| 110 | return false; |
| 111 | |
| 112 | return true; |
| 113 | } |
| 114 | |
| 115 | #ifdef WEBRTC_ARCH_LITTLE_ENDIAN |
| 116 | static inline void WriteLE16(uint16_t* f, uint16_t x) { *f = x; } |
| 117 | static inline void WriteLE32(uint32_t* f, uint32_t x) { *f = x; } |
| 118 | static inline void WriteFourCC(uint32_t* f, char a, char b, char c, char d) { |
| 119 | *f = static_cast<uint32_t>(a) |
| 120 | | static_cast<uint32_t>(b) << 8 |
| 121 | | static_cast<uint32_t>(c) << 16 |
| 122 | | static_cast<uint32_t>(d) << 24; |
| 123 | } |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 124 | |
| 125 | static inline uint16_t ReadLE16(uint16_t x) { return x; } |
| 126 | static inline uint32_t ReadLE32(uint32_t x) { return x; } |
| 127 | static inline std::string ReadFourCC(uint32_t x) { |
| 128 | return std::string(reinterpret_cast<char*>(&x), 4); |
| 129 | } |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 130 | #else |
| 131 | #error "Write be-to-le conversion functions" |
| 132 | #endif |
| 133 | |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 134 | static inline uint32_t RiffChunkSize(uint32_t bytes_in_payload) { |
| 135 | return bytes_in_payload + kWavHeaderSize - sizeof(ChunkHeader); |
| 136 | } |
| 137 | |
| 138 | static inline uint32_t ByteRate(int num_channels, int sample_rate, |
| 139 | int bytes_per_sample) { |
| 140 | return static_cast<uint32_t>(num_channels) * sample_rate * bytes_per_sample; |
| 141 | } |
| 142 | |
| 143 | static inline uint16_t BlockAlign(int num_channels, int bytes_per_sample) { |
| 144 | return num_channels * bytes_per_sample; |
| 145 | } |
| 146 | |
andrew@webrtc.org | f866b2d | 2014-11-03 18:20:06 +0000 | [diff] [blame^] | 147 | void WriteWavHeader(uint8_t* buf, |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 148 | int num_channels, |
| 149 | int sample_rate, |
| 150 | WavFormat format, |
| 151 | int bytes_per_sample, |
| 152 | uint32_t num_samples) { |
andrew@webrtc.org | f866b2d | 2014-11-03 18:20:06 +0000 | [diff] [blame^] | 153 | CHECK(CheckWavParameters(num_channels, sample_rate, format, |
| 154 | bytes_per_sample, num_samples)); |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 155 | |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 156 | WavHeader header; |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 157 | const uint32_t bytes_in_payload = bytes_per_sample * num_samples; |
| 158 | |
| 159 | WriteFourCC(&header.riff.header.ID, 'R', 'I', 'F', 'F'); |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 160 | WriteLE32(&header.riff.header.Size, RiffChunkSize(bytes_in_payload)); |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 161 | WriteFourCC(&header.riff.Format, 'W', 'A', 'V', 'E'); |
| 162 | |
| 163 | WriteFourCC(&header.fmt.header.ID, 'f', 'm', 't', ' '); |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 164 | WriteLE32(&header.fmt.header.Size, kFmtSubchunkSize); |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 165 | WriteLE16(&header.fmt.AudioFormat, format); |
| 166 | WriteLE16(&header.fmt.NumChannels, num_channels); |
| 167 | WriteLE32(&header.fmt.SampleRate, sample_rate); |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 168 | WriteLE32(&header.fmt.ByteRate, ByteRate(num_channels, sample_rate, |
| 169 | bytes_per_sample)); |
| 170 | WriteLE16(&header.fmt.BlockAlign, BlockAlign(num_channels, bytes_per_sample)); |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 171 | WriteLE16(&header.fmt.BitsPerSample, 8 * bytes_per_sample); |
| 172 | |
| 173 | WriteFourCC(&header.data.header.ID, 'd', 'a', 't', 'a'); |
| 174 | WriteLE32(&header.data.header.Size, bytes_in_payload); |
| 175 | |
| 176 | // Do an extra copy rather than writing everything to buf directly, since buf |
| 177 | // might not be correctly aligned. |
| 178 | memcpy(buf, &header, kWavHeaderSize); |
| 179 | } |
| 180 | |
andrew@webrtc.org | a3ed713 | 2014-10-31 21:51:03 +0000 | [diff] [blame] | 181 | bool ReadWavHeader(const uint8_t* buf, |
| 182 | int* num_channels, |
| 183 | int* sample_rate, |
| 184 | WavFormat* format, |
| 185 | int* bytes_per_sample, |
| 186 | uint32_t* num_samples) { |
| 187 | WavHeader header; |
| 188 | memcpy(&header, buf, kWavHeaderSize); |
| 189 | |
| 190 | // Parse needed fields. |
| 191 | *format = static_cast<WavFormat>(ReadLE16(header.fmt.AudioFormat)); |
| 192 | *num_channels = ReadLE16(header.fmt.NumChannels); |
| 193 | *sample_rate = ReadLE32(header.fmt.SampleRate); |
| 194 | *bytes_per_sample = ReadLE16(header.fmt.BitsPerSample) / 8; |
| 195 | const uint32_t bytes_in_payload = ReadLE32(header.data.header.Size); |
| 196 | if (*bytes_per_sample <= 0) |
| 197 | return false; |
| 198 | *num_samples = bytes_in_payload / *bytes_per_sample; |
| 199 | |
| 200 | // Sanity check remaining fields. |
| 201 | if (ReadFourCC(header.riff.header.ID) != "RIFF") |
| 202 | return false; |
| 203 | if (ReadFourCC(header.riff.Format) != "WAVE") |
| 204 | return false; |
| 205 | if (ReadFourCC(header.fmt.header.ID) != "fmt ") |
| 206 | return false; |
| 207 | if (ReadFourCC(header.data.header.ID) != "data") |
| 208 | return false; |
| 209 | |
| 210 | if (ReadLE32(header.riff.header.Size) != RiffChunkSize(bytes_in_payload)) |
| 211 | return false; |
| 212 | if (ReadLE32(header.fmt.header.Size) != kFmtSubchunkSize) |
| 213 | return false; |
| 214 | if (ReadLE32(header.fmt.ByteRate) != |
| 215 | ByteRate(*num_channels, *sample_rate, *bytes_per_sample)) |
| 216 | return false; |
| 217 | if (ReadLE16(header.fmt.BlockAlign) != |
| 218 | BlockAlign(*num_channels, *bytes_per_sample)) |
| 219 | return false; |
| 220 | |
| 221 | return CheckWavParameters(*num_channels, *sample_rate, *format, |
| 222 | *bytes_per_sample, *num_samples); |
| 223 | } |
| 224 | |
| 225 | |
kwiberg@webrtc.org | 877083c | 2014-08-20 07:42:46 +0000 | [diff] [blame] | 226 | } // namespace webrtc |