1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
use crate::error::{FileDecodingError, Result};
use crate::file::FileType;
use crate::properties::FileProperties;
use std::time::Duration;
use byteorder::{LittleEndian, ReadBytesExt};
const PCM: u16 = 0x0001;
const IEEE_FLOAT: u16 = 0x0003;
const EXTENSIBLE: u16 = 0xFFFE;
#[allow(missing_docs, non_camel_case_types)]
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum WavFormat {
PCM,
IEEE_FLOAT,
Other(u16),
}
impl Default for WavFormat {
fn default() -> Self {
Self::Other(0)
}
}
#[derive(Debug, Copy, Clone, PartialEq, Default)]
#[non_exhaustive]
pub struct WavProperties {
pub(crate) format: WavFormat,
pub(crate) duration: Duration,
pub(crate) overall_bitrate: u32,
pub(crate) audio_bitrate: u32,
pub(crate) sample_rate: u32,
pub(crate) bit_depth: u8,
pub(crate) channels: u8,
}
impl From<WavProperties> for FileProperties {
fn from(input: WavProperties) -> Self {
Self {
duration: input.duration,
overall_bitrate: Some(input.overall_bitrate),
audio_bitrate: Some(input.audio_bitrate),
sample_rate: Some(input.sample_rate),
bit_depth: Some(input.bit_depth),
channels: Some(input.channels),
}
}
}
impl WavProperties {
pub fn duration(&self) -> Duration {
self.duration
}
pub fn overall_bitrate(&self) -> u32 {
self.overall_bitrate
}
pub fn bitrate(&self) -> u32 {
self.audio_bitrate
}
pub fn sample_rate(&self) -> u32 {
self.sample_rate
}
pub fn bit_depth(&self) -> u8 {
self.bit_depth
}
pub fn channels(&self) -> u8 {
self.channels
}
pub fn format(&self) -> &WavFormat {
&self.format
}
}
pub(super) fn read_properties(
fmt: &mut &[u8],
mut total_samples: u32,
stream_len: u32,
file_length: u64,
) -> Result<WavProperties> {
let mut format_tag = fmt.read_u16::<LittleEndian>()?;
let channels = fmt.read_u16::<LittleEndian>()? as u8;
if channels == 0 {
return Err(FileDecodingError::new(FileType::WAV, "File contains 0 channels").into());
}
let sample_rate = fmt.read_u32::<LittleEndian>()?;
let bytes_per_second = fmt.read_u32::<LittleEndian>()?;
let block_align = fmt.read_u16::<LittleEndian>()?;
let bits_per_sample = fmt.read_u16::<LittleEndian>()?;
let bytes_per_sample = block_align / u16::from(channels);
let mut bit_depth = if bits_per_sample > 0 {
bits_per_sample as u8
} else {
(bytes_per_sample * 8) as u8
};
if format_tag == EXTENSIBLE {
if fmt.len() + 16 < 40 {
return Err(FileDecodingError::new(
FileType::WAV,
"Extensible format identified, invalid \"fmt \" chunk size found (< 40)",
)
.into());
}
let _cb_size = fmt.read_u16::<LittleEndian>()?;
let valid_bits_per_sample = fmt.read_u16::<LittleEndian>()?;
let _channel_mask = fmt.read_u32::<LittleEndian>()?;
if valid_bits_per_sample > 0 {
bit_depth = valid_bits_per_sample as u8;
}
format_tag = fmt.read_u16::<LittleEndian>()?;
}
let non_pcm = format_tag != PCM && format_tag != IEEE_FLOAT;
if non_pcm && total_samples == 0 {
return Err(FileDecodingError::new(
FileType::WAV,
"Non-PCM format identified, no \"fact\" chunk found",
)
.into());
}
if bits_per_sample > 0 {
total_samples = stream_len / u32::from(u16::from(channels) * ((bits_per_sample + 7) / 8))
} else if !non_pcm {
total_samples = 0
}
let (duration, overall_bitrate, audio_bitrate) = if sample_rate > 0 && total_samples > 0 {
let length = (u64::from(total_samples) * 1000) / u64::from(sample_rate);
if length == 0 {
(Duration::ZERO, 0, 0)
} else {
let overall_bitrate = ((file_length * 8) / length) as u32;
let audio_bitrate = (u64::from(stream_len * 8) / length) as u32;
(
Duration::from_millis(length),
overall_bitrate,
audio_bitrate,
)
}
} else if bytes_per_second > 0 {
let length = (u64::from(stream_len) * 1000) / u64::from(bytes_per_second);
let overall_bitrate = ((file_length * 8) / length) as u32;
let audio_bitrate = (bytes_per_second * 8) / 1000;
(
Duration::from_millis(length),
overall_bitrate,
audio_bitrate,
)
} else {
(Duration::ZERO, 0, 0)
};
Ok(WavProperties {
format: match format_tag {
PCM => WavFormat::PCM,
IEEE_FLOAT => WavFormat::IEEE_FLOAT,
other => WavFormat::Other(other),
},
duration,
overall_bitrate,
audio_bitrate,
sample_rate,
bit_depth,
channels,
})
}