maudio 0.1.5

Rust bindings to the miniaudio library
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
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
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
//! Procedural waveform generator.
//!
//! Generates common waveforms (sine, square, triangle, sawtooth, etc.) and
//! exposes them as a [`DataSource`](crate::data_source::DataSource).
//!
//! This is useful for synthesis, testing, and generating example audio without
//! loading external files.
//!
//! The waveform can be controlled at runtime via [`WaveFormOps`] (type,
//! amplitude, frequency, and sample rate) and can be seeked like any other
//! source.
use std::{marker::PhantomData, mem::MaybeUninit};

use maudio_sys::ffi as sys;

use crate::{
    audio::{
        formats::{Format, SampleBuffer},
        sample_rate::SampleRate,
        wave_shape::WaveFormType,
    },
    data_source::{
        private_data_source, sources::waveform::private_wave::WaveFormPtrProvider, AsSourcePtr,
        DataSourceRef,
    },
    pcm_frames::{PcmFormat, S24Packed, S24},
    AsRawRef, Binding, MaResult,
};

#[allow(dead_code)]
pub(crate) struct WaveState {
    channels: u32,
    sample_rate: SampleRate,
    wave_type: WaveFormType,
    amplitude: f64,
    frequency: f64,
}

/// Allows all WaveForm types to access the same methods
pub trait AsWaveFormPtr {
    #[doc(hidden)]
    type __PtrProvider: WaveFormPtrProvider<Self>;
    fn channels(&self) -> u32;
}

/// Procedural waveform generator.
///
/// `WaveForm` produces continuous periodic PCM audio (sine, square, triangle,
/// sawtooth) and can be read, seeked, or used as a [`DataSource`](crate::data_source::DataSource).
///
/// Audio is generated in **PCM frames** using the selected [`PcmFormat`].
pub struct WaveForm<F: PcmFormat> {
    inner: *mut sys::ma_waveform,
    format: Format,
    state: WaveState,
    _sample_format: PhantomData<F>,
}

impl<F: PcmFormat> Binding for WaveForm<F> {
    type Raw = *mut sys::ma_waveform;

    /// !!! unimplemented !!!
    fn from_ptr(_raw: Self::Raw) -> Self {
        unimplemented!()
    }

    fn to_raw(&self) -> Self::Raw {
        self.inner
    }
}

#[doc(hidden)]
impl<F: PcmFormat> AsSourcePtr for WaveForm<F> {
    type __PtrProvider = private_data_source::WaveFormProvider;
}

impl<F: PcmFormat> AsWaveFormPtr for WaveForm<F> {
    #[doc(hidden)]
    type __PtrProvider = private_wave::WaveFormProvider;

    fn channels(&self) -> u32 {
        self.state.channels
    }
}

mod private_wave {
    use super::*;
    use maudio_sys::ffi as sys;

    pub trait WaveFormPtrProvider<T: ?Sized> {
        fn as_waveform_ptr(t: &T) -> *mut sys::ma_waveform;
    }

    pub struct WaveFormProvider;

    impl<F: PcmFormat> WaveFormPtrProvider<WaveForm<F>> for WaveFormProvider {
        fn as_waveform_ptr(t: &WaveForm<F>) -> *mut sys::ma_waveform {
            t.to_raw()
        }
    }

    pub fn waveform_ptr<T: AsWaveFormPtr + ?Sized>(t: &T) -> *mut sys::ma_waveform {
        <T as AsWaveFormPtr>::__PtrProvider::as_waveform_ptr(t)
    }
}

impl<F: PcmFormat> WaveFormOps for WaveForm<F> {
    type Format = F;
}

pub trait WaveFormOps: AsWaveFormPtr + AsSourcePtr {
    type Format: PcmFormat;

    /// Generates PCM frames into `dst`, returning the number of frames written.
    fn read_pcm_frames_into(
        &mut self,
        dst: &mut [<Self::Format as PcmFormat>::PcmUnit],
    ) -> MaResult<usize> {
        waveform_ffi::ma_waveform_read_pcm_frames_into::<Self::Format, Self>(self, dst)
    }

    /// Allocates and generates `frames` PCM frames.
    fn read_pcm_frames(&mut self, frames: u64) -> MaResult<SampleBuffer<Self::Format>> {
        waveform_ffi::ma_waveform_read_pcm_frames(self, frames)
    }

    /// Seeks to an absolute PCM frame position.
    fn seek_to_pcm_frame(&mut self, frame_index: u64) -> MaResult<()> {
        waveform_ffi::ma_waveform_seek_to_pcm_frame(self, frame_index)
    }

    /// Sets the waveform amplitude.
    fn set_amplitude(&mut self, amplitude: f64) -> MaResult<()> {
        waveform_ffi::ma_waveform_set_amplitude(self, amplitude)
    }

    /// Sets the waveform frequency in Hz.
    fn set_frequency(&mut self, frequency: f64) -> MaResult<()> {
        waveform_ffi::ma_waveform_set_frequency(self, frequency)
    }

    /// Sets the waveform shape.
    fn set_type(&mut self, wave_type: WaveFormType) -> MaResult<()> {
        waveform_ffi::ma_waveform_set_type(self, wave_type)
    }

    /// Sets the sample rate used for generation.
    fn set_sample_rate(&mut self, sample_rate: SampleRate) -> MaResult<()> {
        waveform_ffi::ma_waveform_set_sample_rate(self, sample_rate)
    }

    /// Returns a [`DataSourceRef`] view of this waveform.
    fn as_source<'a>(&'a self) -> DataSourceRef<'a> {
        debug_assert!(!private_wave::waveform_ptr(self).is_null());
        let ptr = private_wave::waveform_ptr(self).cast::<sys::ma_data_source>();
        DataSourceRef::from_ptr(ptr)
    }
}

pub(crate) mod waveform_ffi {
    use crate::{
        audio::{formats::SampleBuffer, sample_rate::SampleRate, wave_shape::WaveFormType},
        data_source::sources::waveform::{private_wave, AsWaveFormPtr, WaveFormBuilder},
        pcm_frames::{PcmFormat, PcmFormatInternal},
        AsRawRef, MaResult, MaudioError,
    };
    use maudio_sys::ffi as sys;

    #[inline]
    pub fn ma_waveform_init(
        config: &WaveFormBuilder,
        waveform: *mut sys::ma_waveform,
    ) -> MaResult<()> {
        let res = unsafe { sys::ma_waveform_init(config.as_raw_ptr(), waveform) };
        MaudioError::check(res)
    }

    #[inline]
    pub fn ma_waveform_uninit<W: AsWaveFormPtr + ?Sized>(waveform: &mut W) {
        unsafe {
            sys::ma_waveform_uninit(private_wave::waveform_ptr(waveform));
        }
    }

    pub fn ma_waveform_read_pcm_frames_into<F: PcmFormat, W: AsWaveFormPtr + ?Sized>(
        waveform: &mut W,
        dst: &mut [F::PcmUnit],
    ) -> MaResult<usize> {
        let channels = waveform.channels();
        if channels == 0 {
            return Err(MaudioError::from_ma_result(sys::ma_result_MA_INVALID_ARGS));
        }

        let frame_count = (dst.len() / channels as usize / F::VEC_PCM_UNITS_PER_FRAME) as u64;

        match F::DIRECT_READ {
            true => {
                let frames_read = ma_waveform_read_pcm_frames_internal(
                    waveform,
                    frame_count,
                    dst.as_mut_ptr() as *mut core::ffi::c_void,
                )?;
                Ok(frames_read as usize)
            }
            false => {
                let tmp_len = SampleBuffer::<F>::required_len(
                    frame_count as usize,
                    channels,
                    F::VEC_STORE_UNITS_PER_FRAME,
                )?;

                let mut tmp = vec![F::StorageUnit::default(); tmp_len];
                let frames_read = ma_waveform_read_pcm_frames_internal(
                    waveform,
                    frame_count,
                    tmp.as_mut_ptr() as *mut core::ffi::c_void,
                )?;

                let _ = <F as PcmFormatInternal>::read_from_storage_internal(
                    &tmp,
                    dst,
                    frames_read as usize,
                    channels as usize,
                )?;

                Ok(frames_read as usize)
            }
        }
    }

    pub fn ma_waveform_read_pcm_frames<F: PcmFormat, W: AsWaveFormPtr + ?Sized>(
        waveform: &mut W,
        frame_count: u64,
    ) -> MaResult<SampleBuffer<F>> {
        let mut buffer = SampleBuffer::<F>::new_zeroed(frame_count as usize, waveform.channels())?;

        let frames_read = ma_waveform_read_pcm_frames_internal(
            waveform,
            frame_count,
            buffer.as_mut_ptr() as *mut core::ffi::c_void,
        )?;

        SampleBuffer::<F>::from_storage(buffer, frames_read as usize, waveform.channels())
    }

    #[inline]
    fn ma_waveform_read_pcm_frames_internal<W: AsWaveFormPtr + ?Sized>(
        waveform: &mut W,
        frame_count: u64,
        buffer: *mut core::ffi::c_void,
    ) -> MaResult<u64> {
        let mut frames_read = 0;
        let res = unsafe {
            sys::ma_waveform_read_pcm_frames(
                private_wave::waveform_ptr(waveform),
                buffer,
                frame_count,
                &mut frames_read,
            )
        };
        MaudioError::check(res)?;
        Ok(frames_read)
    }

    #[inline]
    pub fn ma_waveform_seek_to_pcm_frame<W: AsWaveFormPtr + ?Sized>(
        waveform: &mut W,
        frame_index: u64,
    ) -> MaResult<()> {
        let res = unsafe {
            sys::ma_waveform_seek_to_pcm_frame(private_wave::waveform_ptr(waveform), frame_index)
        };
        MaudioError::check(res)
    }

    #[inline]
    pub fn ma_waveform_set_amplitude<W: AsWaveFormPtr + ?Sized>(
        waveform: &mut W,
        amplitude: f64,
    ) -> MaResult<()> {
        let res = unsafe {
            sys::ma_waveform_set_amplitude(private_wave::waveform_ptr(waveform), amplitude)
        };
        MaudioError::check(res)
    }

    #[inline]
    pub fn ma_waveform_set_frequency<W: AsWaveFormPtr + ?Sized>(
        waveform: &mut W,
        frequency: f64,
    ) -> MaResult<()> {
        let res = unsafe {
            sys::ma_waveform_set_frequency(private_wave::waveform_ptr(waveform), frequency)
        };
        MaudioError::check(res)
    }

    #[inline]
    pub fn ma_waveform_set_type<W: AsWaveFormPtr + ?Sized>(
        waveform: &mut W,
        wave_type: WaveFormType,
    ) -> MaResult<()> {
        let res = unsafe {
            sys::ma_waveform_set_type(private_wave::waveform_ptr(waveform), wave_type.into())
        };
        MaudioError::check(res)
    }

    #[inline]
    pub fn ma_waveform_set_sample_rate<W: AsWaveFormPtr + ?Sized>(
        waveform: &mut W,
        sample_rate: SampleRate,
    ) -> MaResult<()> {
        let res = unsafe {
            sys::ma_waveform_set_sample_rate(
                private_wave::waveform_ptr(waveform),
                sample_rate.into(),
            )
        };
        MaudioError::check(res)
    }
}

impl<F: PcmFormat> Drop for WaveForm<F> {
    fn drop(&mut self) {
        waveform_ffi::ma_waveform_uninit(self);
        drop(unsafe { Box::from_raw(self.to_raw()) });
    }
}

/// Builder for constructing a [`WaveForm`]
pub struct WaveFormBuilder {
    inner: sys::ma_waveform_config,
    format: Format,
    channels: u32,
    sample_rate: SampleRate,
    wave_type: WaveFormType,
    amplitude: f64,
    frequency: f64,
}

impl AsRawRef for WaveFormBuilder {
    type Raw = sys::ma_waveform_config;

    fn as_raw(&self) -> &Self::Raw {
        &self.inner
    }
}

impl WaveFormBuilder {
    /// Creates a new waveform builder with fully configurable parameters.
    ///
    /// This is the most flexible way to construct a waveform.
    pub fn new(
        channels: u32,
        sample_rate: SampleRate,
        wave_type: WaveFormType,
        amplitude: f64,
        frequency: f64,
    ) -> Self {
        let ptr = unsafe {
            sys::ma_waveform_config_init(
                Format::F32.into(),
                channels,
                sample_rate.into(),
                wave_type.into(),
                amplitude,
                frequency,
            )
        };
        Self {
            inner: ptr,
            format: Format::F32,
            channels,
            sample_rate,
            wave_type,
            amplitude,
            frequency,
        }
    }

    /// Convenience method for creating a `WaveFormType::Sine` node with some default values:
    /// - `channels`: 2
    /// - `amplitude`: 0.2
    /// - `format`: Format::F32
    pub fn new_sine(sample_rate: SampleRate, frequency: f64) -> Self {
        let channels = 2;
        let wave_type = WaveFormType::Sine;
        let amplitude = 0.2;
        let ptr = unsafe {
            sys::ma_waveform_config_init(
                Format::F32.into(),
                channels,
                sample_rate.into(),
                wave_type.into(),
                amplitude,
                frequency,
            )
        };
        Self {
            inner: ptr,
            format: Format::F32,
            channels,
            sample_rate,
            wave_type,
            amplitude,
            frequency,
        }
    }

    /// Convenience method for creating a `WaveFormType::Square` node with some default values:
    /// - `channels`: 2
    /// - `amplitude`: 0.2
    /// - `format`: Format::F32
    pub fn new_square(sample_rate: SampleRate, frequency: f64) -> Self {
        let channels = 2;
        let wave_type = WaveFormType::Square;
        let amplitude = 0.2;
        let ptr = unsafe {
            sys::ma_waveform_config_init(
                Format::F32.into(),
                channels,
                sample_rate.into(),
                wave_type.into(),
                amplitude,
                frequency,
            )
        };
        Self {
            inner: ptr,
            format: Format::F32,
            channels,
            sample_rate,
            wave_type,
            amplitude,
            frequency,
        }
    }

    /// Convenience method for creating a `WaveFormType::Sawtooth` node with some default values:
    /// - `channels`: 2
    /// - `amplitude`: 0.2
    /// - `format`: Format::F32
    pub fn new_sawtooth(sample_rate: SampleRate, frequency: f64) -> Self {
        let channels = 2;
        let wave_type = WaveFormType::Sawtooth;
        let amplitude = 0.2;
        let ptr = unsafe {
            sys::ma_waveform_config_init(
                Format::F32.into(),
                channels,
                sample_rate.into(),
                wave_type.into(),
                amplitude,
                frequency,
            )
        };
        Self {
            inner: ptr,
            format: Format::F32,
            channels,
            sample_rate,
            wave_type,
            amplitude,
            frequency,
        }
    }

    /// Convenience method for creating a `WaveFormType::Triangle` node with some default values:
    /// - `channels`: 2
    /// - `amplitude`: 0.2
    /// - `format`: Format::F32
    pub fn new_triangle(sample_rate: SampleRate, frequency: f64) -> Self {
        let channels = 2;
        let wave_type = WaveFormType::Triangle;
        let amplitude = 0.2;
        let ptr = unsafe {
            sys::ma_waveform_config_init(
                Format::F32.into(),
                channels,
                sample_rate.into(),
                wave_type.into(),
                amplitude,
                frequency,
            )
        };
        Self {
            inner: ptr,
            format: Format::F32,
            channels,
            sample_rate,
            wave_type,
            amplitude,
            frequency,
        }
    }

    /// Sets the waveform type.
    pub fn wave_type(&mut self, t: WaveFormType) -> &mut Self {
        self.inner.type_ = t.into();
        self.wave_type = t;
        self
    }

    /// Sets the waveform amplitude.
    pub fn amplitude(&mut self, a: f64) -> &mut Self {
        self.inner.amplitude = a;
        self.amplitude = a;
        self
    }

    /// Sets the waveform frequency, in Hertz.
    pub fn frequency(&mut self, f: f64) -> &mut Self {
        self.inner.frequency = f;
        self.frequency = f;
        self
    }

    /// Sets the number of output channels.
    pub fn channels(&mut self, c: u32) -> &mut Self {
        self.inner.channels = c;
        self.channels = c;
        self
    }

    pub fn build_u8(&mut self) -> MaResult<WaveForm<u8>> {
        self.inner.format = Format::U8.into();

        let inner = self.new_inner()?;
        let state = self.new_state();

        Ok(WaveForm {
            inner,
            format: Format::U8,
            state,
            _sample_format: PhantomData,
        })
    }

    pub fn build_i16(&mut self) -> MaResult<WaveForm<i16>> {
        self.inner.format = Format::S16.into();

        let inner = self.new_inner()?;
        let state = self.new_state();

        Ok(WaveForm {
            inner,
            format: Format::S16,
            state,
            _sample_format: PhantomData,
        })
    }

    pub fn build_i32(&mut self) -> MaResult<WaveForm<i32>> {
        self.inner.format = Format::S32.into();

        let inner = self.new_inner()?;
        let state = self.new_state();

        Ok(WaveForm {
            inner,
            format: Format::S32,
            state,
            _sample_format: PhantomData,
        })
    }

    pub fn build_s24(&mut self) -> MaResult<WaveForm<S24>> {
        self.inner.format = Format::S24Packed.into();

        let inner = self.new_inner()?;
        let state = self.new_state();

        Ok(WaveForm {
            inner,
            format: Format::S24Packed,
            state,
            _sample_format: PhantomData,
        })
    }

    pub fn build_s24_packed(&mut self) -> MaResult<WaveForm<S24Packed>> {
        self.inner.format = Format::S24Packed.into();

        let inner = self.new_inner()?;
        let state = self.new_state();

        Ok(WaveForm {
            inner,
            format: Format::S24Packed,
            state,
            _sample_format: PhantomData,
        })
    }

    pub fn build_f32(&mut self) -> MaResult<WaveForm<f32>> {
        self.inner.format = Format::F32.into();

        let inner = self.new_inner()?;
        let state = self.new_state();

        Ok(WaveForm {
            inner,
            format: Format::F32,
            state,
            _sample_format: PhantomData,
        })
    }

    fn new_state(&self) -> WaveState {
        WaveState {
            channels: self.channels,
            sample_rate: self.sample_rate,
            wave_type: self.wave_type,
            amplitude: self.amplitude,
            frequency: self.frequency,
        }
    }

    fn new_inner(&self) -> MaResult<*mut sys::ma_waveform> {
        self.init_from_config_internal()
    }

    fn init_from_config_internal(&self) -> MaResult<*mut sys::ma_waveform> {
        let mut mem: Box<std::mem::MaybeUninit<sys::ma_waveform>> = Box::new(MaybeUninit::uninit());

        waveform_ffi::ma_waveform_init(self, mem.as_mut_ptr())?;

        let inner: *mut sys::ma_waveform = Box::into_raw(mem) as *mut sys::ma_waveform;

        Ok(inner)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    fn approx_eq_f32(a: f32, b: f32, eps: f32) -> bool {
        (a - b).abs() <= eps
    }

    #[test]
    fn test_waveform_builder_new_sine_initializes_expected_defaults() {
        let sample_rate = SampleRate::Sr48000;
        let frequency = 440.0;

        let b = WaveFormBuilder::new_sine(sample_rate, frequency);

        assert_eq!(b.format, Format::F32);
        assert_eq!(b.channels, 2);
        assert_eq!(b.sample_rate, sample_rate);
        assert_eq!(b.wave_type, WaveFormType::Sine);
        assert_eq!(b.amplitude, 0.2);
        assert_eq!(b.frequency, frequency);

        // Ensure raw config mirrors as well.
        assert_eq!(b.inner.channels, 2);
        assert_eq!(b.inner.amplitude, 0.2);
        assert_eq!(b.inner.frequency, frequency);
    }

    #[test]
    fn test_waveform_build_u8_sets_state_and_format() {
        let channels = 2;
        let sample_rate = SampleRate::Sr48000;
        let wave_type = WaveFormType::Sine;
        let amplitude = 1.0;
        let frequency = 440.0;

        let w = WaveFormBuilder::new(channels, sample_rate, wave_type, amplitude, frequency)
            .build_u8()
            .unwrap();

        assert_eq!(w.format, Format::U8);
        assert_eq!(w.state.channels, channels);
        assert_eq!(w.state.sample_rate, sample_rate);
        assert_eq!(w.state.wave_type, wave_type);
        assert_eq!(w.state.amplitude, amplitude);
        assert_eq!(w.state.frequency, frequency);
    }

    #[test]
    fn test_waveform_build_i16_sets_state_and_format() {
        let w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_i16()
            .unwrap();

        assert_eq!(w.format, Format::S16);
        assert_eq!(w.state.channels, 2);
        assert_eq!(w.state.wave_type, WaveFormType::Sine);
        assert_eq!(w.state.amplitude, 0.2);
        assert_eq!(w.state.frequency, 440.0);
    }

    #[test]
    fn test_waveform_build_i32_sets_state_and_format() {
        let w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_i32()
            .unwrap();

        assert_eq!(w.format, Format::S32);
        assert_eq!(w.state.channels, 2);
    }

    #[test]
    fn test_waveform_build_s24_sets_state_and_format() {
        let w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_s24()
            .unwrap();

        assert_eq!(w.format, Format::S24Packed);
        assert_eq!(w.state.channels, 2);
    }

    #[test]
    fn test_waveform_build_f32_sets_state_and_format() {
        let w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_f32()
            .unwrap();

        assert_eq!(w.format, Format::F32);
        assert_eq!(w.state.channels, 2);
    }

    // --- read_pcm_frames contract tests -------------------------------------
    //
    // We do NOT assume ma_waveform always fills `frame_count`.
    // We only validate:
    // - frames_read <= requested
    // - buffer length matches frames_read * channels (or *3 for s24)
    // - reading 0 frames behaves

    #[test]
    fn test_waveform_read_pcm_frames_u8_len_matches_frames_read_times_channels() {
        let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_u8()
            .unwrap();

        let requested = 256u64;
        let buf = w.read_pcm_frames(requested).unwrap();
        let frames_read = buf.frames() as u64;

        assert!(frames_read <= requested);
        assert_eq!(buf.len(), (frames_read * w.channels() as u64) as usize);
    }

    #[test]
    fn test_waveform_read_pcm_frames_i16_len_matches_frames_read_times_channels() {
        let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_i16()
            .unwrap();

        let requested = 256u64;
        let buf = w.read_pcm_frames(requested).unwrap();
        let frames_read = buf.frames() as u64;

        assert!(frames_read <= requested);
        assert_eq!(buf.len(), (frames_read * w.channels() as u64) as usize);
    }

    #[test]
    fn test_waveform_read_pcm_frames_i32_len_matches_frames_read_times_channels() {
        let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_i32()
            .unwrap();

        let requested = 256u64;
        let buf = w.read_pcm_frames(requested).unwrap();
        let frames_read = buf.frames() as u64;

        assert!(frames_read <= requested);
        assert_eq!(buf.len(), (frames_read * w.channels() as u64) as usize);
    }

    #[test]
    fn test_waveform_read_pcm_frames_f32_len_matches_frames_read_times_channels() {
        let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_f32()
            .unwrap();

        let requested = 256u64;
        let buf = w.read_pcm_frames(requested).unwrap();
        let frames_read = buf.frames() as u64;

        assert!(frames_read <= requested);
        assert_eq!(buf.len(), (frames_read * w.channels() as u64) as usize);

        // Optional sanity: sine in [-1,1] range when amplitude=1.
        // Don't be overly strict across backends/platforms.
        if !buf.is_empty() {
            let max_abs = buf
                .as_ref()
                .iter()
                .copied()
                .map(|x| x.abs())
                .fold(0.0f32, f32::max);
            assert!(max_abs <= 1.1);
        }
    }

    #[test]
    fn test_waveform_read_pcm_frames_s24_len_matches_frames_read_times_channels_times_3() {
        let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_s24()
            .unwrap();

        let requested = 256u64;
        let buf = w.read_pcm_frames(requested).unwrap();
        let frames_read = buf.frames() as u64;

        assert!(frames_read <= requested);
        assert_eq!(buf.len(), (frames_read * w.channels() as u64) as usize);
    }

    #[test]
    fn test_waveform_read_pcm_frames_s24_packed_len_matches_frames_read_times_channels_times_3() {
        let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_s24_packed()
            .unwrap();

        let requested = 256u64;
        let buf = w.read_pcm_frames(requested).unwrap();
        let frames_read = buf.frames() as u64;

        assert!(frames_read <= requested);
        assert_eq!(buf.len(), (frames_read * w.channels() as u64 * 3) as usize);
    }

    #[test]
    fn test_waveform_read_zero_frames_returns_empty_buffer_all_formats() {
        // U8
        {
            let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
                .channels(2)
                .build_u8()
                .unwrap();
            let buf = w.read_pcm_frames(1).unwrap();
            let frames_read = buf.frames() as u64;
            assert_eq!(frames_read, 1);
            assert_eq!(buf.len(), 2);
        }

        // I16
        {
            let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
                .channels(2)
                .build_i16()
                .unwrap();
            let buf = w.read_pcm_frames(1).unwrap();
            let frames_read = buf.frames() as u64;
            assert_eq!(frames_read, 1);
            assert_eq!(buf.len(), 2);
        }

        // I32
        {
            let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
                .channels(2)
                .build_i32()
                .unwrap();
            let buf = w.read_pcm_frames(1).unwrap();
            let frames_read = buf.frames() as u64;
            assert_eq!(frames_read, 1);
            assert_eq!(buf.len(), 2);
        }

        // S24
        {
            let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
                .channels(2)
                .build_s24()
                .unwrap();
            let buf = w.read_pcm_frames(1).unwrap();
            let frames_read = buf.frames() as u64;
            assert_eq!(frames_read, 1);
            assert_eq!(buf.len(), 2);
        }

        // S24Pacled
        {
            let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
                .channels(2)
                .build_s24_packed()
                .unwrap();
            let buf = w.read_pcm_frames(1).unwrap();
            let frames_read = buf.frames() as u64;
            assert_eq!(frames_read, 1);
            assert_eq!(buf.len(), 6);
        }

        // F32
        {
            let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
                .channels(2)
                .build_f32()
                .unwrap();
            let buf = w.read_pcm_frames(1).unwrap();
            let frames_read = buf.frames() as u64;
            assert_eq!(frames_read, 1);
            assert_eq!(buf.len(), 2);
        }
    }

    // --- WaveFormOps delegation / seek determinism tests ---------------------

    #[test]
    fn test_waveform_seek_to_zero_makes_subsequent_reads_repeatable_f32() {
        let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_f32()
            .unwrap();

        let n = 256u64;

        let a = w.read_pcm_frames(n).unwrap();
        let a_frames = a.frames() as u64;
        w.seek_to_pcm_frame(0).unwrap();
        let b = w.read_pcm_frames(n).unwrap();
        let b_frames = b.frames() as u64;

        assert_eq!(a_frames, b_frames);
        assert_eq!(a.len(), b.len());

        // Float comparisons: allow tiny error (though for the same code path it should be exact).
        for (x, y) in a.as_ref().iter().copied().zip(b.as_ref().iter().copied()) {
            assert!(approx_eq_f32(x, y, 1e-6), "x={x} y={y}");
        }
    }

    #[test]
    fn test_waveform_set_frequency_changes_generated_signal_f32() {
        let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_f32()
            .unwrap();

        let n = 256u64;

        // Read baseline.
        let a = w.read_pcm_frames(n).unwrap();
        let a_frames = a.frames() as u64;

        // Reset to start, change frequency, read again.
        w.seek_to_pcm_frame(0).unwrap();
        w.set_frequency(880.0).unwrap();
        let b = w.read_pcm_frames(n).unwrap();
        let b_frames = b.frames() as u64;

        assert_eq!(a_frames, b_frames);
        assert_eq!(a.len(), b.len());

        // The buffers should differ for most samples.
        // Be tolerant: just ensure we see at least one differing sample.
        let any_diff = a
            .as_ref()
            .iter()
            .zip(b.as_ref().iter())
            .any(|(&x, &y)| !approx_eq_f32(x, y, 1e-6));
        assert!(any_diff, "frequency change did not affect samples");
    }

    #[test]
    fn test_waveform_set_amplitude_scales_signal_f32() {
        let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_f32()
            .unwrap();

        let n = 512u64;

        w.seek_to_pcm_frame(0).unwrap();
        w.set_amplitude(1.0).unwrap();
        let a = w.read_pcm_frames(n).unwrap();

        w.seek_to_pcm_frame(0).unwrap();
        w.set_amplitude(0.5).unwrap();
        let b = w.read_pcm_frames(n).unwrap();

        // Compare peak absolute values (roughly half).
        let max_a = a
            .as_ref()
            .iter()
            .copied()
            .map(|x| x.abs())
            .fold(0.0f32, f32::max);
        let max_b = b
            .as_ref()
            .iter()
            .copied()
            .map(|x| x.abs())
            .fold(0.0f32, f32::max);

        // Use a loose bound to avoid backend quirks.
        assert!(max_b < max_a);
        assert!(max_b <= max_a * 0.6);
    }

    #[test]
    fn test_waveform_set_type_changes_signal_f32() {
        let mut w = WaveFormBuilder::new_sine(SampleRate::Sr48000, 440.0)
            .channels(2)
            .build_f32()
            .unwrap();

        let n = 256u64;

        w.seek_to_pcm_frame(0).unwrap();
        w.set_type(WaveFormType::Sine).unwrap();
        let a = w.read_pcm_frames(n).unwrap();

        w.seek_to_pcm_frame(0).unwrap();
        w.set_type(WaveFormType::Square).unwrap();
        let b = w.read_pcm_frames(n).unwrap();

        // Not identical if waveform type is respected.
        let any_diff = a
            .as_ref()
            .iter()
            .zip(b.as_ref().iter())
            .any(|(&x, &y)| !approx_eq_f32(x, y, 1e-6));
        assert!(any_diff, "waveform type change did not affect samples");
    }
}