audio 0.2.1

A crate for working with audio in Rust
Documentation
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
//! Utilities for working with linear buffers.

use core::cmp;
use core::fmt;
use core::ops;
use core::slice;

use audio_core::{Channel, ChannelMut};

use crate::slice::Slice;

#[macro_use]
mod macros;

mod iter;
pub use self::iter::{Iter, IterMut};

slice_comparisons!({'a, T, const N: usize}, LinearChannel<'a, T>, [T; N]);
slice_comparisons!({'a, T}, LinearChannel<'a, T>, [T]);
slice_comparisons!({'a, T}, LinearChannel<'a, T>, &[T]);
slice_comparisons!(#[cfg(feature = "std")] {'a, T}, LinearChannel<'a, T>, Vec<T>);
slice_comparisons!({'a, T, const N: usize}, LinearChannelMut<'a, T>, [T; N]);
slice_comparisons!({'a, T}, LinearChannelMut<'a, T>, [T]);
slice_comparisons!({'a, T}, LinearChannelMut<'a, T>, &[T]);
slice_comparisons!(#[cfg(feature = "std")] {'a, T}, LinearChannelMut<'a, T>, Vec<T>);

/// Read-only access to a single channel of audio within a linear, multichannel
/// audio buffer. This struct does not own the audio data; it provides an API
/// for accessing data owned by something else.
///
/// See also [crate::buf::Sequential].
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(transparent)]
pub struct LinearChannel<'a, T> {
    /// The underlying channel buffer.
    buf: &'a [T],
}

impl<'a, T> LinearChannel<'a, T> {
    /// Construct a linear channel buffer.
    ///
    /// The buffer provided as-is constitutes the frames of the channel.
    ///
    /// # Examples
    ///
    /// ```
    /// use audio::channel::LinearChannel;
    ///
    /// let buf: &[u32] = &[1, 3, 5, 7];
    /// let channel = LinearChannel::new(buf);
    ///
    /// assert_eq!(channel.iter().nth(1), Some(3));
    /// assert_eq!(channel.iter().nth(2), Some(5));
    /// ```
    #[inline]
    pub fn new(buf: &'a [T]) -> Self {
        Self { buf }
    }

    /// Get the given frame in the linear channel.
    #[inline]
    pub fn get(&self, n: usize) -> Option<T>
    where
        T: Copy,
    {
        self.buf.get(n).copied()
    }

    /// Construct an immutable iterator over the linear channel.
    #[inline]
    pub fn iter(&self) -> Iter<'_, T>
    where
        T: Copy,
    {
        Iter::new(self.buf)
    }

    /// Convert the channel into the underlying buffer.
    #[inline]
    pub fn into_ref(self) -> &'a [T] {
        self.buf
    }
}

impl<T> Channel for LinearChannel<'_, T>
where
    T: Copy,
{
    type Sample = T;

    type Channel<'this>
        = LinearChannel<'this, Self::Sample>
    where
        Self: 'this;

    type Iter<'this>
        = Iter<'this, Self::Sample>
    where
        Self: 'this;

    #[inline]
    fn as_channel(&self) -> Self::Channel<'_> {
        Self { buf: self.buf }
    }

    #[inline]
    fn len(&self) -> usize {
        self.buf.len()
    }

    #[inline]
    fn get(&self, n: usize) -> Option<Self::Sample> {
        (*self).get(n)
    }

    #[inline]
    fn iter(&self) -> Self::Iter<'_> {
        (*self).iter()
    }

    #[inline]
    fn skip(self, n: usize) -> Self {
        Self {
            buf: self.buf.get(n..).unwrap_or_default(),
        }
    }

    #[inline]
    fn tail(self, n: usize) -> Self {
        let start = self.buf.len().saturating_sub(n);

        Self {
            buf: self.buf.get(start..).unwrap_or_default(),
        }
    }

    #[inline]
    fn limit(self, limit: usize) -> Self {
        Self {
            buf: self.buf.get(..limit).unwrap_or_default(),
        }
    }

    #[inline]
    fn try_as_linear(&self) -> Option<&[T]> {
        Some(self.buf)
    }
}

impl<T> AsRef<[T]> for LinearChannel<'_, T> {
    #[inline]
    fn as_ref(&self) -> &[T] {
        self.buf
    }
}

impl<T> fmt::Debug for LinearChannel<'_, T>
where
    T: fmt::Debug,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_list().entries(self.buf).finish()
    }
}

/// Read-write access to a single channel of audio within a linear, multichannel
/// audio buffer. This struct does not own the audio data; it provides an API
/// for accessing data owned by something else.
///
/// See also [crate::buf::Sequential].
#[derive(PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct LinearChannelMut<'a, T> {
    /// The underlying channel buffer.
    buf: &'a mut [T],
}

impl<'a, T> LinearChannelMut<'a, T> {
    /// Construct a linear channel buffer.
    ///
    /// The buffer provided as-is constitutes the frames of the channel.
    ///
    /// # Examples
    ///
    /// ```
    /// use audio::channel::LinearChannelMut;
    ///
    /// let buf: &mut [u32] = &mut [1, 3, 5, 7];
    /// let channel = LinearChannelMut::new(buf);
    ///
    /// assert_eq!(channel.iter().nth(1), Some(3));
    /// assert_eq!(channel.iter().nth(2), Some(5));
    /// ```
    #[inline]
    pub fn new(buf: &'a mut [T]) -> Self {
        Self { buf }
    }

    /// Get the given frame.
    #[inline]
    pub fn get(&self, n: usize) -> Option<T>
    where
        T: Copy,
    {
        self.buf.get(n).copied()
    }

    /// Construct an iterator over the linear channel.
    #[inline]
    pub fn iter(&self) -> Iter<'_, T> {
        Iter::new(self.buf)
    }

    /// Get a mutable reference to the given frame.
    #[inline]
    pub fn get_mut(&mut self, n: usize) -> Option<&mut T> {
        self.buf.get_mut(n)
    }

    /// Construct an immutable iterator over the linear channel.
    #[inline]
    pub fn iter_mut(&mut self) -> IterMut<'_, T> {
        IterMut::new(self.buf)
    }

    /// Convert the channel into the underlying buffer.
    #[inline]
    pub fn into_ref(self) -> &'a [T] {
        self.buf
    }

    /// Convert the channel into the underlying mutable buffer.
    #[inline]
    pub fn into_mut(self) -> &'a mut [T] {
        self.buf
    }
}

impl<T> audio_core::LinearChannel for LinearChannel<'_, T>
where
    T: Copy,
{
    #[inline]
    fn as_linear_channel(&self) -> &[Self::Sample] {
        self.buf
    }
}

impl<T, I> ops::Index<I> for LinearChannel<'_, T>
where
    I: slice::SliceIndex<[T]>,
{
    type Output = I::Output;

    #[inline]
    fn index(&self, index: I) -> &Self::Output {
        self.buf.index(index)
    }
}

impl<T> Channel for LinearChannelMut<'_, T>
where
    T: Copy,
{
    type Sample = T;

    type Channel<'this>
        = LinearChannel<'this, Self::Sample>
    where
        Self: 'this;

    type Iter<'this>
        = Iter<'this, Self::Sample>
    where
        Self: 'this;

    #[inline]
    fn as_channel(&self) -> Self::Channel<'_> {
        LinearChannel { buf: self.buf }
    }

    #[inline]
    fn len(&self) -> usize {
        self.buf.len()
    }

    #[inline]
    fn get(&self, n: usize) -> Option<Self::Sample> {
        (*self).get(n)
    }

    #[inline]
    fn iter(&self) -> Self::Iter<'_> {
        (*self).iter()
    }

    #[inline]
    fn skip(self, n: usize) -> Self {
        Self {
            buf: self.buf.get_mut(n..).unwrap_or_default(),
        }
    }

    #[inline]
    fn tail(self, n: usize) -> Self {
        let start = self.buf.len().saturating_sub(n);

        Self {
            buf: self.buf.get_mut(start..).unwrap_or_default(),
        }
    }

    #[inline]
    fn limit(self, limit: usize) -> Self {
        Self {
            buf: self.buf.get_mut(..limit).unwrap_or_default(),
        }
    }

    #[inline]
    fn try_as_linear(&self) -> Option<&[T]> {
        Some(self.buf)
    }
}

impl<T> ChannelMut for LinearChannelMut<'_, T>
where
    T: Copy,
{
    type ChannelMut<'this>
        = LinearChannelMut<'this, T>
    where
        Self: 'this;

    type IterMut<'this>
        = IterMut<'this, T>
    where
        Self: 'this;

    #[inline]
    fn as_channel_mut(&mut self) -> Self::ChannelMut<'_> {
        LinearChannelMut { buf: self.buf }
    }

    #[inline]
    fn get_mut(&mut self, n: usize) -> Option<&mut Self::Sample> {
        (*self).get_mut(n)
    }

    #[inline]
    fn iter_mut(&mut self) -> Self::IterMut<'_> {
        (*self).iter_mut()
    }

    #[inline]
    fn try_as_linear_mut(&mut self) -> Option<&mut [Self::Sample]> {
        Some(self.buf)
    }

    #[inline]
    fn fill(&mut self, value: Self::Sample) {
        self.buf.fill(value);
    }
}

impl<T> audio_core::LinearChannel for LinearChannelMut<'_, T>
where
    T: Copy,
{
    #[inline]
    fn as_linear_channel(&self) -> &[Self::Sample] {
        self.buf
    }
}

impl<T> audio_core::LinearChannelMut for LinearChannelMut<'_, T>
where
    T: Copy,
{
    #[inline]
    fn as_linear_channel_mut(&mut self) -> &mut [Self::Sample] {
        self.buf
    }
}

impl<T> AsMut<[T]> for LinearChannelMut<'_, T> {
    #[inline]
    fn as_mut(&mut self) -> &mut [T] {
        self.buf
    }
}

impl<T> fmt::Debug for LinearChannelMut<'_, T>
where
    T: fmt::Debug,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_list().entries(self.buf.iter()).finish()
    }
}

impl<T, I> ops::Index<I> for LinearChannelMut<'_, T>
where
    I: slice::SliceIndex<[T]>,
{
    type Output = I::Output;

    #[inline]
    fn index(&self, index: I) -> &Self::Output {
        self.buf.index(index)
    }
}

impl<T, I> ops::IndexMut<I> for LinearChannelMut<'_, T>
where
    I: slice::SliceIndex<[T]>,
{
    #[inline]
    fn index_mut(&mut self, index: I) -> &mut Self::Output {
        self.buf.index_mut(index)
    }
}