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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
// Symphonia
// Copyright (c) 2019-2026 The Project Symphonia Developers.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
use std::ops::RangeBounds;
use crate::audio::{
conv::ConvertibleSample,
sample::{SampleBytes, SampleFormat, i24, u24},
};
use super::{Audio, AudioBuffer, AudioBytes, AudioMut, AudioSlice, AudioSpec};
/// An owning wrapper for an [`AudioBuffer`] of any standard sample format.
///
/// Calls on this wrapper are dispatched to the underlying, wrapped, buffer and are semantically
/// identical.
pub enum GenericAudioBuffer {
/// An unsigned 8-bit integer audio buffer.
U8(AudioBuffer<u8>),
/// An unsigned 16-bit integer audio buffer.
U16(AudioBuffer<u16>),
/// An unsigned 24-bit integer audio buffer.
U24(AudioBuffer<u24>),
/// An unsigned 32-bit integer audio buffer.
U32(AudioBuffer<u32>),
/// A signed 8-bit integer audio buffer.
S8(AudioBuffer<i8>),
/// A signed 16-bit integer audio buffer.
S16(AudioBuffer<i16>),
/// A signed 24-bit integer audio buffer.
S24(AudioBuffer<i24>),
/// A signed 32-bit integer audio buffer.
S32(AudioBuffer<i32>),
/// A single precision (32-bit) floating point audio buffer.
F32(AudioBuffer<f32>),
/// A double precision (64-bit) floating point audio buffer.
F64(AudioBuffer<f64>),
}
macro_rules! impl_generic_func {
($own:expr, $buf:ident, $expr:expr) => {
match $own {
GenericAudioBuffer::U8($buf) => $expr,
GenericAudioBuffer::U16($buf) => $expr,
GenericAudioBuffer::U24($buf) => $expr,
GenericAudioBuffer::U32($buf) => $expr,
GenericAudioBuffer::S8($buf) => $expr,
GenericAudioBuffer::S16($buf) => $expr,
GenericAudioBuffer::S24($buf) => $expr,
GenericAudioBuffer::S32($buf) => $expr,
GenericAudioBuffer::F32($buf) => $expr,
GenericAudioBuffer::F64($buf) => $expr,
}
};
}
impl GenericAudioBuffer {
pub fn new(format: SampleFormat, spec: AudioSpec, capacity: usize) -> Self {
match format {
SampleFormat::U8 => GenericAudioBuffer::U8(AudioBuffer::new(spec, capacity)),
SampleFormat::U16 => GenericAudioBuffer::U16(AudioBuffer::new(spec, capacity)),
SampleFormat::U24 => GenericAudioBuffer::U24(AudioBuffer::new(spec, capacity)),
SampleFormat::U32 => GenericAudioBuffer::U32(AudioBuffer::new(spec, capacity)),
SampleFormat::S8 => GenericAudioBuffer::S8(AudioBuffer::new(spec, capacity)),
SampleFormat::S16 => GenericAudioBuffer::S16(AudioBuffer::new(spec, capacity)),
SampleFormat::S24 => GenericAudioBuffer::S24(AudioBuffer::new(spec, capacity)),
SampleFormat::S32 => GenericAudioBuffer::S32(AudioBuffer::new(spec, capacity)),
SampleFormat::F32 => GenericAudioBuffer::F32(AudioBuffer::new(spec, capacity)),
SampleFormat::F64 => GenericAudioBuffer::F64(AudioBuffer::new(spec, capacity)),
}
}
/// Get the audio specification.
pub fn spec(&self) -> &AudioSpec {
impl_generic_func!(self, buf, buf.spec())
}
/// Get the total number of audio planes.
pub fn num_planes(&self) -> usize {
impl_generic_func!(self, buf, buf.num_planes())
}
/// Returns `true` if there are no audio frames.
pub fn is_empty(&self) -> bool {
impl_generic_func!(self, buf, buf.is_empty())
}
/// Gets the number of audio frames in the buffer.
pub fn frames(&self) -> usize {
impl_generic_func!(self, buf, buf.frames())
}
/// Returns `true` if the `AudioBuffer` is unused.
///
/// An unused `AudioBuffer` has either a capacity of 0, or no channels.
pub fn is_unused(&self) -> bool {
impl_generic_func!(self, buf, buf.is_unused())
}
/// Gets the total capacity of the buffer. The capacity is the maximum number of audio frames
/// the buffer can store.
pub fn capacity(&self) -> usize {
impl_generic_func!(self, buf, buf.capacity())
}
/// Clears all audio frames.
pub fn clear(&mut self) {
impl_generic_func!(self, buf, buf.clear());
}
/// Grows the capacity of the buffer if the new capacity is larger than the current capacity.
///
/// # Realtime Safety
///
/// This function will allocate if `new_capacity` exceeds the current capacity.
pub fn grow_capacity(&mut self, new_capacity: usize) {
impl_generic_func!(self, buf, buf.grow_capacity(new_capacity))
}
/// Resizes the buffer such that the number of frames is `new_len`. New frames are silent.
///
/// See [`AudioBuffer::resize_with_silence`] for full details.
pub fn resize_with_silence(&mut self, new_len: usize) {
impl_generic_func!(self, buf, buf.resize_with_silence(new_len))
}
/// Resizes the buffer such that the number of frames is `new_len`. New frames are left
/// uninitialized and may contain stale data that should be overwritten.
///
/// See [`AudioBuffer::resize_uninit`] for full details.
pub fn resize_uninit(&mut self, new_len: usize) {
impl_generic_func!(self, buf, buf.resize_uninit(new_len))
}
/// Renders a number of silent frames.
///
/// See [`AudioBuffer::render_silence`] for full details.
pub fn render_silence(&mut self, num_frames: Option<usize>) -> usize {
impl_generic_func!(self, buf, buf.render_silence(num_frames))
}
/// Renders an uninitialized number of frames.
///
/// See [`AudioBuffer::render_uninit`] for full details.
pub fn render_uninit(&mut self, num_frames: Option<usize>) -> usize {
impl_generic_func!(self, buf, buf.render_uninit(num_frames))
}
/// Shifts the contents of the buffer back by the number of frames specified. The leading frames
/// are dropped from the buffer.
pub fn shift(&mut self, shift: usize) {
impl_generic_func!(self, buf, buf.shift(shift))
}
/// Get an immutable slice of the buffer over `range`.
pub fn slice<R: RangeBounds<usize>>(&self, range: R) -> GenericAudioSlice<'_> {
match self {
GenericAudioBuffer::U8(buf) => GenericAudioSlice::U8(buf.slice(range)),
GenericAudioBuffer::U16(buf) => GenericAudioSlice::U16(buf.slice(range)),
GenericAudioBuffer::U24(buf) => GenericAudioSlice::U24(buf.slice(range)),
GenericAudioBuffer::U32(buf) => GenericAudioSlice::U32(buf.slice(range)),
GenericAudioBuffer::S8(buf) => GenericAudioSlice::S8(buf.slice(range)),
GenericAudioBuffer::S16(buf) => GenericAudioSlice::S16(buf.slice(range)),
GenericAudioBuffer::S24(buf) => GenericAudioSlice::S24(buf.slice(range)),
GenericAudioBuffer::S32(buf) => GenericAudioSlice::S32(buf.slice(range)),
GenericAudioBuffer::F32(buf) => GenericAudioSlice::F32(buf.slice(range)),
GenericAudioBuffer::F64(buf) => GenericAudioSlice::F64(buf.slice(range)),
}
}
/// Truncates the buffer to the number of frames specified. If the number of frames in the
/// buffer is less-than the number of frames specified, then this function does nothing.
pub fn truncate(&mut self, num_frames: usize) {
impl_generic_func!(self, buf, buf.truncate(num_frames))
}
/// Trims frames from the start and end of the buffer.
pub fn trim(&mut self, start: usize, end: usize) {
impl_generic_func!(self, buf, buf.trim(start, end))
}
/// Get the total number of samples contained in all audio planes.
pub fn samples_interleaved(&self) -> usize {
self.num_planes() * self.frames()
}
/// Get the total number of samples contained in each audio plane.
pub fn samples_planar(&self) -> usize {
self.frames()
}
/// Copy audio to a mutable audio slice while doing any necessary sample format conversions.
pub fn copy_to<Sout, Dst>(&self, dst: &mut Dst)
where
Sout: ConvertibleSample,
Dst: AudioMut<Sout>,
{
impl_generic_func!(self, buf, dst.copy_from(buf));
}
/// Copy all audio frames to a slice of samples in interleaved order.
///
/// See [`AudioBuffer::copy_to_slice_interleaved`] for full details.
pub fn copy_to_slice_interleaved<Sout, Dst>(&self, dst: Dst)
where
Sout: ConvertibleSample,
Dst: AsMut<[Sout]>,
{
impl_generic_func!(self, buf, buf.copy_to_slice_interleaved(dst))
}
/// Copy all audio planes to discrete slices.
///
/// See [`AudioBuffer::copy_to_slice_planar`] for full details.
pub fn copy_to_slice_planar<Sout, Dst>(&self, dst: &mut [Dst])
where
Sout: ConvertibleSample,
Dst: AsMut<[Sout]>,
{
impl_generic_func!(self, buf, buf.copy_to_slice_planar(dst))
}
/// Copy all audio frames to a vector of samples in interleaved order.
///
/// See [`AudioBuffer::copy_to_vec_interleaved`] for full details.
pub fn copy_to_vec_interleaved<Sout>(&self, dst: &mut Vec<Sout>)
where
Sout: ConvertibleSample,
{
impl_generic_func!(self, buf, buf.copy_to_vec_interleaved(dst))
}
/// Copy all audio planes to discrete vectors.
///
/// See [`AudioBuffer::copy_to_vecs_planar`] for full details.
pub fn copy_to_vecs_planar<Sout>(&self, dst: &mut Vec<Vec<Sout>>)
where
Sout: ConvertibleSample,
{
impl_generic_func!(self, buf, buf.copy_to_vecs_planar(dst))
}
/// Copy interleaved audio to the destination byte slice after converting to a different sample
/// format.
///
/// See [`AudioBuffer::copy_bytes_interleaved_as`] for full details.
pub fn copy_bytes_interleaved_as<Sout, Dst>(&self, dst: Dst)
where
Sout: SampleBytes + ConvertibleSample,
Dst: AsMut<[u8]>,
{
impl_generic_func!(self, buf, buf.copy_bytes_interleaved_as::<Sout, _>(dst))
}
/// Copy planar audio as bytes to a destination slice per plane after converting to a different
/// sample format.
///
/// See [`AudioBuffer::copy_bytes_planar_as`] for full details.
pub fn copy_bytes_planar_as<Sout, Dst>(&self, dst: &mut [Dst])
where
Sout: SampleBytes + ConvertibleSample,
Dst: AsMut<[u8]>,
{
impl_generic_func!(self, buf, buf.copy_bytes_planar_as::<Sout, _>(dst))
}
/// Copy interleaved audio to the destination byte slice.
///
/// See [`AudioBuffer::copy_bytes_interleaved`] for full details.
pub fn copy_bytes_interleaved<Dst>(&self, dst: Dst)
where
Dst: AsMut<[u8]>,
{
impl_generic_func!(self, buf, buf.copy_bytes_interleaved(dst))
}
/// Copy planar audio as bytes to a destination slice per plane.
///
/// See [`AudioBuffer::copy_bytes_planar`] for full details.
pub fn copy_bytes_planar<Dst>(&self, dst: &mut [Dst])
where
Dst: AsMut<[u8]>,
{
impl_generic_func!(self, buf, buf.copy_bytes_planar(dst))
}
/// Copy interleaved audio to the destination byte vector.
///
/// See [`AudioBuffer::copy_bytes_to_vec_interleaved`] for full details.
pub fn copy_bytes_to_vec_interleaved(&self, dst: &mut Vec<u8>) {
impl_generic_func!(self, buf, buf.copy_bytes_to_vec_interleaved(dst))
}
/// Copy interleaved audio to the destination byte vector after converting to a different sample
/// format.
///
/// See [`AudioBuffer::copy_bytes_to_vec_interleaved_as`] for full details.
pub fn copy_bytes_to_vec_interleaved_as<Sout>(&self, dst: &mut Vec<u8>)
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_func!(self, buf, buf.copy_bytes_to_vec_interleaved_as::<Sout>(dst))
}
/// Copy audio planes as bytes to discrete byte vectors.
///
/// See [`AudioBuffer::copy_bytes_to_vecs_planar`] for full details.
pub fn copy_bytes_to_vecs_planar(&self, dst: &mut Vec<Vec<u8>>) {
impl_generic_func!(self, buf, buf.copy_bytes_to_vecs_planar(dst))
}
/// Copy audio planes as bytes to discrete byte vectors after converting to a different sample
/// format.
///
/// See [`AudioBuffer::copy_bytes_to_vecs_planar_as`] for full details.
pub fn copy_bytes_to_vecs_planar_as<Sout>(&self, dst: &mut Vec<Vec<u8>>)
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_func!(self, buf, buf.copy_bytes_to_vecs_planar_as::<Sout>(dst))
}
/// Get the length in bytes of all samples if converted to a new sample format.
pub fn byte_len_as<Sout>(&self) -> usize
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_func!(self, buf, buf.byte_len_as::<Sout>())
}
/// Get the length in bytes of all samples in a single plane if converted to a new sample
/// format.
pub fn byte_len_per_plane_as<Sout>(&self) -> usize
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_func!(self, buf, buf.byte_len_per_plane_as::<Sout>())
}
/// Get the length of bytes of a single interleaved audio frame if converted to a new sample
/// format.
pub fn byte_len_per_frame_as<Sout>(&self) -> usize
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_func!(self, buf, buf.byte_len_per_frame_as::<Sout>())
}
/// Get the length in bytes of all samples.
pub fn byte_len(&self) -> usize {
impl_generic_func!(self, buf, buf.byte_len())
}
/// Get the length in bytes of all samples in a single plane.
pub fn byte_len_per_plane(&self) -> usize {
impl_generic_func!(self, buf, buf.byte_len_per_plane())
}
/// Get the length of bytes of a single interleaved audio frame.
pub fn byte_len_per_frame(&self) -> usize {
impl_generic_func!(self, buf, buf.byte_len_per_frame())
}
}
/// A non-owning immutable reference wrapper for an [`AudioBuffer`] of any standard sample format.
///
/// Calls on this wrapper are dispatched to the underlying, wrapped, buffer and are semantically
/// identical.
#[derive(Clone)]
pub enum GenericAudioBufferRef<'a> {
/// An immutable unsigned 8-bit integer audio buffer reference.
U8(&'a AudioBuffer<u8>),
/// An immutable unsigned 16-bit integer audio buffer reference.
U16(&'a AudioBuffer<u16>),
/// An immutable unsigned 24-bit integer audio buffer reference.
U24(&'a AudioBuffer<u24>),
/// An immutable unsigned 32-bit integer audio buffer reference.
U32(&'a AudioBuffer<u32>),
/// An immutable signed 8-bit integer audio buffer reference.
S8(&'a AudioBuffer<i8>),
/// An immutable signed 16-bit integer audio buffer reference.
S16(&'a AudioBuffer<i16>),
/// An immutable signed 24-bit integer audio buffer reference.
S24(&'a AudioBuffer<i24>),
/// An immutable signed 32-bit integer audio buffer reference.
S32(&'a AudioBuffer<i32>),
/// An immutable single precision (32-bit) floating point audio buffer reference.
F32(&'a AudioBuffer<f32>),
/// An immutable double precision (64-bit) floating point audio buffer reference.
F64(&'a AudioBuffer<f64>),
}
macro_rules! impl_generic_ref_func {
($var:expr, $buf:ident,$expr:expr) => {
match $var {
GenericAudioBufferRef::U8($buf) => $expr,
GenericAudioBufferRef::U16($buf) => $expr,
GenericAudioBufferRef::U24($buf) => $expr,
GenericAudioBufferRef::U32($buf) => $expr,
GenericAudioBufferRef::S8($buf) => $expr,
GenericAudioBufferRef::S16($buf) => $expr,
GenericAudioBufferRef::S24($buf) => $expr,
GenericAudioBufferRef::S32($buf) => $expr,
GenericAudioBufferRef::F32($buf) => $expr,
GenericAudioBufferRef::F64($buf) => $expr,
}
};
}
impl GenericAudioBufferRef<'_> {
/// Get the audio specification.
pub fn spec(&self) -> &AudioSpec {
impl_generic_ref_func!(self, buf, buf.spec())
}
/// Get the total number of audio planes.
pub fn num_planes(&self) -> usize {
impl_generic_ref_func!(self, buf, buf.num_planes())
}
/// Returns `true` if there are no audio frames.
pub fn is_empty(&self) -> bool {
impl_generic_ref_func!(self, buf, buf.is_empty())
}
/// Gets the number of audio frames in the buffer.
pub fn frames(&self) -> usize {
impl_generic_ref_func!(self, buf, buf.frames())
}
/// Returns `true` if the referenced `AudioBuffer` is unused.
///
/// An unused `AudioBuffer` has either a capacity of 0, or no channels.
pub fn is_unused(&self) -> bool {
impl_generic_ref_func!(self, buf, buf.is_unused())
}
/// Gets the total capacity of the buffer. The capacity is the maximum number of audio frames
/// the buffer can store.
pub fn capacity(&self) -> usize {
impl_generic_ref_func!(self, buf, buf.capacity())
}
/// Get the total number of samples contained in all audio planes.
pub fn samples_interleaved(&self) -> usize {
self.num_planes() * self.frames()
}
/// Get the total number of samples contained in each audio plane.
pub fn samples_planar(&self) -> usize {
self.frames()
}
/// Copy audio to a mutable audio slice while doing any necessary sample format conversions.
pub fn copy_to<Sout, Dst>(&self, dst: &mut Dst)
where
Sout: ConvertibleSample,
Dst: AudioMut<Sout>,
{
impl_generic_ref_func!(self, buf, dst.copy_from(*buf));
}
/// Copy all audio frames to a slice of samples in interleaved order.
///
/// See [`AudioBuffer::copy_to_slice_interleaved`] for full details.
pub fn copy_to_slice_interleaved<Sout, Dst>(&self, dst: Dst)
where
Sout: ConvertibleSample,
Dst: AsMut<[Sout]>,
{
impl_generic_ref_func!(self, buf, buf.copy_to_slice_interleaved(dst))
}
/// Copy all audio planes to discrete slices.
///
/// See [`AudioBuffer::copy_to_slice_planar`] for full details.
pub fn copy_to_slice_planar<Sout, Dst>(&self, dst: &mut [Dst])
where
Sout: ConvertibleSample,
Dst: AsMut<[Sout]>,
{
impl_generic_ref_func!(self, buf, buf.copy_to_slice_planar(dst))
}
/// Copy all audio frames to a vector of samples in interleaved order.
///
/// See [`AudioBuffer::copy_to_vec_interleaved`] for full details.
pub fn copy_to_vec_interleaved<Sout>(&self, dst: &mut Vec<Sout>)
where
Sout: ConvertibleSample,
{
impl_generic_ref_func!(self, buf, buf.copy_to_vec_interleaved(dst))
}
/// Copy all audio planes to discrete vectors.
///
/// See [`AudioBuffer::copy_to_vecs_planar`] for full details.
pub fn copy_to_vecs_planar<Sout>(&self, dst: &mut Vec<Vec<Sout>>)
where
Sout: ConvertibleSample,
{
impl_generic_ref_func!(self, buf, buf.copy_to_vecs_planar(dst))
}
/// Copy interleaved audio to the destination byte slice after converting to a different sample
/// format.
///
/// See [`AudioBuffer::copy_bytes_interleaved_as`] for full details.
pub fn copy_bytes_interleaved_as<Sout, Dst>(&self, dst: Dst)
where
Sout: SampleBytes + ConvertibleSample,
Dst: AsMut<[u8]>,
{
impl_generic_ref_func!(self, buf, buf.copy_bytes_interleaved_as::<Sout, _>(dst))
}
/// Copy planar audio as bytes to a destination slice per plane after converting to a different
/// sample format.
///
/// See [`AudioBuffer::copy_bytes_planar_as`] for full details.
pub fn copy_bytes_planar_as<Sout, Dst>(&self, dst: &mut [Dst])
where
Sout: SampleBytes + ConvertibleSample,
Dst: AsMut<[u8]>,
{
impl_generic_ref_func!(self, buf, buf.copy_bytes_planar_as::<Sout, _>(dst))
}
/// Copy interleaved audio to the destination byte slice.
///
/// See [`AudioBuffer::copy_bytes_interleaved`] for full details.
pub fn copy_bytes_interleaved<Dst>(&self, dst: Dst)
where
Dst: AsMut<[u8]>,
{
impl_generic_ref_func!(self, buf, buf.copy_bytes_interleaved(dst))
}
/// Copy planar audio as bytes to a destination slice per plane.
///
/// See [`AudioBuffer::copy_bytes_planar`] for full details.
pub fn copy_bytes_planar<Dst>(&self, dst: &mut [Dst])
where
Dst: AsMut<[u8]>,
{
impl_generic_ref_func!(self, buf, buf.copy_bytes_planar(dst))
}
/// Copy interleaved audio to the destination byte vector.
///
/// See [`AudioBuffer::copy_bytes_to_vec_interleaved`] for full details.
pub fn copy_bytes_to_vec_interleaved(&self, dst: &mut Vec<u8>) {
impl_generic_ref_func!(self, buf, buf.copy_bytes_to_vec_interleaved(dst))
}
/// Copy interleaved audio to the destination byte vector after converting to a different sample
/// format.
///
/// See [`AudioBuffer::copy_bytes_to_vec_interleaved_as`] for full details.
pub fn copy_bytes_to_vec_interleaved_as<Sout>(&self, dst: &mut Vec<u8>)
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_ref_func!(self, buf, buf.copy_bytes_to_vec_interleaved_as::<Sout>(dst))
}
/// Copy audio planes as bytes to discrete byte vectors.
///
/// See [`AudioBuffer::copy_bytes_to_vecs_planar`] for full details.
pub fn copy_bytes_to_vecs_planar(&self, dst: &mut Vec<Vec<u8>>) {
impl_generic_ref_func!(self, buf, buf.copy_bytes_to_vecs_planar(dst))
}
/// Copy audio planes as bytes to discrete byte vectors after converting to a different sample
/// format.
///
/// See [`AudioBuffer::copy_bytes_to_vecs_planar_as`] for full details.
pub fn copy_bytes_to_vecs_planar_as<Sout>(&self, dst: &mut Vec<Vec<u8>>)
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_ref_func!(self, buf, buf.copy_bytes_to_vecs_planar_as::<Sout>(dst))
}
/// Get the length in bytes of all samples if converted to a new sample format.
pub fn byte_len_as<Sout>(&self) -> usize
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_ref_func!(self, buf, buf.byte_len_as::<Sout>())
}
/// Get the length in bytes of all samples in a single plane if converted to a new sample
/// format.
pub fn byte_len_per_plane_as<Sout>(&self) -> usize
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_ref_func!(self, buf, buf.byte_len_per_plane_as::<Sout>())
}
/// Get the length of bytes of a single interleaved audio frame if converted to a new sample
/// format.
pub fn byte_len_per_frame_as<Sout>(&self) -> usize
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_ref_func!(self, buf, buf.byte_len_per_frame_as::<Sout>())
}
/// Get the length in bytes of all samples.
pub fn byte_len(&self) -> usize {
impl_generic_ref_func!(self, buf, buf.byte_len())
}
/// Get the length in bytes of all samples in a single plane.
pub fn byte_len_per_plane(&self) -> usize {
impl_generic_ref_func!(self, buf, buf.byte_len_per_plane())
}
/// Get the length of bytes of a single interleaved audio frame.
pub fn byte_len_per_frame(&self) -> usize {
impl_generic_ref_func!(self, buf, buf.byte_len_per_frame())
}
}
/// A trait for generically borrowing an [`AudioBuffer`] by wrapping it in a
/// [`GenericAudioBufferRef`].
pub trait AsGenericAudioBufferRef {
/// Get an immutable reference to the audio buffer as a generic audio buffer reference.
fn as_generic_audio_buffer_ref(&self) -> GenericAudioBufferRef<'_>;
}
impl AsGenericAudioBufferRef for GenericAudioBuffer {
fn as_generic_audio_buffer_ref(&self) -> GenericAudioBufferRef<'_> {
impl_generic_func!(self, buf, buf.as_generic_audio_buffer_ref())
}
}
// Implement AsicGenericAudioBufferRef for all AudioBuffers of standard sample formats.
macro_rules! impl_as_generic_audio_buffer_ref {
($fmt:ty, $ref:path) => {
impl AsGenericAudioBufferRef for AudioBuffer<$fmt> {
fn as_generic_audio_buffer_ref(&self) -> GenericAudioBufferRef<'_> {
$ref(self)
}
}
};
}
impl_as_generic_audio_buffer_ref!(u8, GenericAudioBufferRef::U8);
impl_as_generic_audio_buffer_ref!(u16, GenericAudioBufferRef::U16);
impl_as_generic_audio_buffer_ref!(u24, GenericAudioBufferRef::U24);
impl_as_generic_audio_buffer_ref!(u32, GenericAudioBufferRef::U32);
impl_as_generic_audio_buffer_ref!(i8, GenericAudioBufferRef::S8);
impl_as_generic_audio_buffer_ref!(i16, GenericAudioBufferRef::S16);
impl_as_generic_audio_buffer_ref!(i24, GenericAudioBufferRef::S24);
impl_as_generic_audio_buffer_ref!(i32, GenericAudioBufferRef::S32);
impl_as_generic_audio_buffer_ref!(f32, GenericAudioBufferRef::F32);
impl_as_generic_audio_buffer_ref!(f64, GenericAudioBufferRef::F64);
// Implement From for conversions between AudioBuffer and GenericAudioBuffer{Ref} for all
// standard sample formats.
macro_rules! impl_from_converions {
($fmt:ty, $own:path, $ref:path) => {
// Infalliable conversion from AudioBuffer<S> to GenericAudioBuffer.
impl From<AudioBuffer<$fmt>> for GenericAudioBuffer {
fn from(value: AudioBuffer<$fmt>) -> Self {
$own(value)
}
}
// Falliable conversion from GenericAudioBuffer to AudioBuffer<S>.
impl TryFrom<GenericAudioBuffer> for AudioBuffer<$fmt> {
type Error = ();
fn try_from(value: GenericAudioBuffer) -> Result<Self, Self::Error> {
match value {
$own(buffer) => Ok(buffer),
_ => Err(()),
}
}
}
// Infalliable conversion from &AudioBuffer<S> to GenericAudioBufferRef.
impl<'a> From<&'a AudioBuffer<$fmt>> for GenericAudioBufferRef<'a> {
fn from(value: &'a AudioBuffer<$fmt>) -> Self {
$ref(value)
}
}
// Falliable conversion from GenericAudioBufferRef to &AudioBuffer<S>.
impl<'a> TryFrom<GenericAudioBufferRef<'a>> for &'a AudioBuffer<$fmt> {
type Error = ();
fn try_from(value: GenericAudioBufferRef<'a>) -> Result<Self, Self::Error> {
match value {
$ref(buffer) => Ok(buffer),
_ => Err(()),
}
}
}
};
}
impl_from_converions!(u8, GenericAudioBuffer::U8, GenericAudioBufferRef::U8);
impl_from_converions!(u16, GenericAudioBuffer::U16, GenericAudioBufferRef::U16);
impl_from_converions!(u24, GenericAudioBuffer::U24, GenericAudioBufferRef::U24);
impl_from_converions!(u32, GenericAudioBuffer::U32, GenericAudioBufferRef::U32);
impl_from_converions!(i8, GenericAudioBuffer::S8, GenericAudioBufferRef::S8);
impl_from_converions!(i16, GenericAudioBuffer::S16, GenericAudioBufferRef::S16);
impl_from_converions!(i24, GenericAudioBuffer::S24, GenericAudioBufferRef::S24);
impl_from_converions!(i32, GenericAudioBuffer::S32, GenericAudioBufferRef::S32);
impl_from_converions!(f32, GenericAudioBuffer::F32, GenericAudioBufferRef::F32);
impl_from_converions!(f64, GenericAudioBuffer::F64, GenericAudioBufferRef::F64);
/// An owning wrapper for an [`AudioSlice`] of any standard sample format.
///
/// Calls on this wrapper are dispatched to the underlying, wrapped, slice and are semantically
/// identical.
pub enum GenericAudioSlice<'a> {
/// An unsigned 8-bit integer audio slice.
U8(AudioSlice<'a, u8>),
/// An unsigned 16-bit integer audio slice.
U16(AudioSlice<'a, u16>),
/// An unsigned 24-bit integer audio slice.
U24(AudioSlice<'a, u24>),
/// An unsigned 32-bit integer audio slice.
U32(AudioSlice<'a, u32>),
/// A signed 8-bit integer audio slice.
S8(AudioSlice<'a, i8>),
/// A signed 16-bit integer audio slice.
S16(AudioSlice<'a, i16>),
/// A signed 24-bit integer audio slice.
S24(AudioSlice<'a, i24>),
/// A signed 32-bit integer audio slice.
S32(AudioSlice<'a, i32>),
/// A single precision (32-bit) floating point audio slice.
F32(AudioSlice<'a, f32>),
/// A double precision (64-bit) floating point audio slice.
F64(AudioSlice<'a, f64>),
}
macro_rules! impl_generic_slice_func {
($own:expr, $buf:ident, $expr:expr) => {
match $own {
GenericAudioSlice::U8($buf) => $expr,
GenericAudioSlice::U16($buf) => $expr,
GenericAudioSlice::U24($buf) => $expr,
GenericAudioSlice::U32($buf) => $expr,
GenericAudioSlice::S8($buf) => $expr,
GenericAudioSlice::S16($buf) => $expr,
GenericAudioSlice::S24($buf) => $expr,
GenericAudioSlice::S32($buf) => $expr,
GenericAudioSlice::F32($buf) => $expr,
GenericAudioSlice::F64($buf) => $expr,
}
};
}
impl<'a> GenericAudioSlice<'a> {
/// Get the audio specification.
pub fn spec(&self) -> &AudioSpec {
impl_generic_slice_func!(self, slice, slice.spec())
}
/// Get the total number of audio planes.
pub fn num_planes(&self) -> usize {
impl_generic_slice_func!(self, slice, slice.num_planes())
}
/// Returns `true` if there are no audio frames.
pub fn is_empty(&self) -> bool {
impl_generic_slice_func!(self, slice, slice.is_empty())
}
/// Gets the number of audio frames in the slice.
pub fn frames(&self) -> usize {
impl_generic_slice_func!(self, slice, slice.frames())
}
/// Get the total number of samples contained in all audio planes.
pub fn samples_interleaved(&self) -> usize {
self.num_planes() * self.frames()
}
/// Get the total number of samples contained in each audio plane.
pub fn samples_planar(&self) -> usize {
self.frames()
}
/// Copy audio to a mutable audio slice while doing any necessary sample format conversions.
pub fn copy_to<Sout, Dst>(&self, dst: &mut Dst)
where
Sout: ConvertibleSample,
Dst: AudioMut<Sout>,
{
impl_generic_slice_func!(self, slice, dst.copy_from(slice));
}
/// Copy all audio frames to a slice of samples in interleaved order.
///
/// See [`AudioBuffer::copy_to_slice_interleaved`] for full details.
pub fn copy_to_slice_interleaved<Sout, Dst>(&self, dst: Dst)
where
Sout: ConvertibleSample,
Dst: AsMut<[Sout]>,
{
impl_generic_slice_func!(self, slice, slice.copy_to_slice_interleaved(dst))
}
/// Copy all audio planes to discrete slices.
///
/// See [`AudioBuffer::copy_to_slice_planar`] for full details.
pub fn copy_to_slice_planar<Sout, Dst>(&self, dst: &mut [Dst])
where
Sout: ConvertibleSample,
Dst: AsMut<[Sout]>,
{
impl_generic_slice_func!(self, slice, slice.copy_to_slice_planar(dst))
}
/// Copy all audio frames to a vector of samples in interleaved order.
///
/// See [`AudioBuffer::copy_to_vec_interleaved`] for full details.
pub fn copy_to_vec_interleaved<Sout>(&self, dst: &mut Vec<Sout>)
where
Sout: ConvertibleSample,
{
impl_generic_slice_func!(self, slice, slice.copy_to_vec_interleaved(dst))
}
/// Copy all audio planes to discrete vectors.
///
/// See [`AudioBuffer::copy_to_vecs_planar`] for full details.
pub fn copy_to_vecs_planar<Sout>(&self, dst: &mut Vec<Vec<Sout>>)
where
Sout: ConvertibleSample,
{
impl_generic_slice_func!(self, slice, slice.copy_to_vecs_planar(dst))
}
/// Copy interleaved audio to the destination byte slice after converting to a different sample
/// format.
///
/// See [`AudioBuffer::copy_bytes_interleaved_as`] for full details.
pub fn copy_bytes_interleaved_as<Sout, Dst>(&self, dst: Dst)
where
Sout: SampleBytes + ConvertibleSample,
Dst: AsMut<[u8]>,
{
impl_generic_slice_func!(self, slice, slice.copy_bytes_interleaved_as::<Sout, _>(dst))
}
/// Copy planar audio as bytes to a destination slice per plane after converting to a different
/// sample format.
///
/// See [`AudioBuffer::copy_bytes_planar_as`] for full details.
pub fn copy_bytes_planar_as<Sout, Dst>(&self, dst: &mut [Dst])
where
Sout: SampleBytes + ConvertibleSample,
Dst: AsMut<[u8]>,
{
impl_generic_slice_func!(self, slice, slice.copy_bytes_planar_as::<Sout, _>(dst))
}
/// Copy interleaved audio to the destination byte slice.
///
/// See [`AudioBuffer::copy_bytes_interleaved`] for full details.
pub fn copy_bytes_interleaved<Dst>(&self, dst: Dst)
where
Dst: AsMut<[u8]>,
{
impl_generic_slice_func!(self, slice, slice.copy_bytes_interleaved(dst))
}
/// Copy planar audio as bytes to a destination slice per plane.
///
/// See [`AudioBuffer::copy_bytes_planar`] for full details.
pub fn copy_bytes_planar<Dst>(&self, dst: &mut [Dst])
where
Dst: AsMut<[u8]>,
{
impl_generic_slice_func!(self, slice, slice.copy_bytes_planar(dst))
}
/// Copy interleaved audio to the destination byte vector.
///
/// See [`AudioBuffer::copy_bytes_to_vec_interleaved`] for full details.
pub fn copy_bytes_to_vec_interleaved(&self, dst: &mut Vec<u8>) {
impl_generic_slice_func!(self, slice, slice.copy_bytes_to_vec_interleaved(dst))
}
/// Copy interleaved audio to the destination byte vector after converting to a different sample
/// format.
///
/// See [`AudioBuffer::copy_bytes_to_vec_interleaved_as`] for full details.
pub fn copy_bytes_to_vec_interleaved_as<Sout>(&self, dst: &mut Vec<u8>)
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_slice_func!(self, slice, slice.copy_bytes_to_vec_interleaved_as::<Sout>(dst))
}
/// Copy audio planes as bytes to discrete byte vectors.
///
/// See [`AudioBuffer::copy_bytes_to_vecs_planar`] for full details.
pub fn copy_bytes_to_vecs_planar(&self, dst: &mut Vec<Vec<u8>>) {
impl_generic_slice_func!(self, slice, slice.copy_bytes_to_vecs_planar(dst))
}
/// Copy audio planes as bytes to discrete byte vectors after converting to a different sample
/// format.
///
/// See [`AudioBuffer::copy_bytes_to_vecs_planar_as`] for full details.
pub fn copy_bytes_to_vecs_planar_as<Sout>(&self, dst: &mut Vec<Vec<u8>>)
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_slice_func!(self, slice, slice.copy_bytes_to_vecs_planar_as::<Sout>(dst))
}
/// Get the length in bytes of all samples if converted to a new sample format.
pub fn byte_len_as<Sout>(&self) -> usize
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_slice_func!(self, slice, slice.byte_len_as::<Sout>())
}
/// Get the length in bytes of all samples in a single plane if converted to a new sample
/// format.
pub fn byte_len_per_plane_as<Sout>(&self) -> usize
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_slice_func!(self, slice, slice.byte_len_per_plane_as::<Sout>())
}
/// Get the length of bytes of a single interleaved audio frame if converted to a new sample
/// format.
pub fn byte_len_per_frame_as<Sout>(&self) -> usize
where
Sout: SampleBytes + ConvertibleSample,
{
impl_generic_slice_func!(self, slice, slice.byte_len_per_frame_as::<Sout>())
}
/// Get the length in bytes of all samples.
pub fn byte_len(&self) -> usize {
impl_generic_slice_func!(self, slice, slice.byte_len())
}
/// Get the length in bytes of all samples in a single plane.
pub fn byte_len_per_plane(&self) -> usize {
impl_generic_slice_func!(self, slice, slice.byte_len_per_plane())
}
/// Get the length of bytes of a single interleaved audio frame.
pub fn byte_len_per_frame(&self) -> usize {
impl_generic_slice_func!(self, slice, slice.byte_len_per_frame())
}
}