You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Include OSStatus when formatting the Unknown error
* Mark unsafe functions, fix other clippy warnings
* Unused import in example
* Add fmt and clippy to ci
* Remove needless cast
---------
Co-authored-by: simlay <[email protected]>
/// > The canonical formats in Core Audio are as follows:
31
31
/// >
32
32
/// > - iOS input and output: Linear PCM with 16-bit integer samples.
33
33
/// > - iOS audio units and other audio processing: Noninterleaved linear PCM with 8.24-bit
34
-
/// fixed-point samples
34
+
/// > fixed-point samples
35
35
/// > - Mac input and output: Linear PCM with 32-bit floating point samples.
36
36
/// > - Mac audio units and other audio processing: Noninterleaved linear PCM with 32-bit floating
37
-
/// point samples.
37
+
/// > point samples.
38
38
#[derive(Copy,Clone,Debug)]
39
39
pubstructStreamFormat{
40
40
/// The number of frames of audio data per second used to represent a signal.
@@ -61,7 +61,7 @@ impl StreamFormat {
61
61
/// specified in the documentation:
62
62
///
63
63
/// > Specify kAudioFormatLinearPCM for the mFormatID field. Audio units use uncompressed audio
64
-
/// data, so this is the correct format identifier to use whenever you work with audio units.
64
+
/// > data, so this is the correct format identifier to use whenever you work with audio units.
65
65
///
66
66
/// [*Audio Unit Hosting Guide for iOS*](https://developer.apple.com/library/ios/documentation/MusicAudio/Conceptual/AudioUnitHostingGuide_iOS/AudioUnitHostingFundamentals/AudioUnitHostingFundamentals.html)
0 commit comments