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
Copy file name to clipboardexpand all lines: src/audio_unit/audio_format.rs
+8-8
Original file line number
Diff line number
Diff line change
@@ -337,31 +337,31 @@ bitflags! {
337
337
///
338
338
/// Original documentation [here](https://developer.apple.com/library/mac/documentation/MusicAudio/Reference/CoreAudioDataTypesRef/#//apple_ref/doc/constant_group/AudioStreamBasicDescription_Flags).
339
339
pubstructLinearPcmFlags:u32{
340
-
/// Synonmyn for the **IS_FLOAT** **StandardFlags**.
340
+
/// Synonym for the **IS_FLOAT** **StandardFlags**.
341
341
///
342
342
/// **Available** in OS X v10.0 and later.
343
343
constIS_FLOAT = 1;
344
-
/// Synonmyn for the **IS_BIG_ENDIAN** **StandardFlags**.
344
+
/// Synonym for the **IS_BIG_ENDIAN** **StandardFlags**.
345
345
///
346
346
/// **Available** in OS X v10.0 and later.
347
347
constIS_BIG_ENDIAN = 2;
348
-
/// Synonmyn for the **IS_SIGNED_INTEGER** **StandardFlags**.
348
+
/// Synonym for the **IS_SIGNED_INTEGER** **StandardFlags**.
349
349
///
350
350
/// **Available** in OS X v10.0 and later.
351
351
constIS_SIGNED_INTEGER = 4;
352
-
/// Synonmyn for the **IS_PACKED** **StandardFlags**.
352
+
/// Synonym for the **IS_PACKED** **StandardFlags**.
353
353
///
354
354
/// **Available** in OS X v10.0 and later.
355
355
constIS_PACKED = 8;
356
-
/// Synonmyn for the **IS_ALIGNED_HIGH** **StandardFlags**.
356
+
/// Synonym for the **IS_ALIGNED_HIGH** **StandardFlags**.
357
357
///
358
358
/// **Available** in OS X v10.0 and later.
359
359
constIS_ALIGNED_HIGH = 16;
360
-
/// Synonmyn for the **IS_NON_INTERLEAVED** **StandardFlags**.
360
+
/// Synonym for the **IS_NON_INTERLEAVED** **StandardFlags**.
361
361
///
362
362
/// **Available** in OS X v10.2 and later.
363
363
constIS_NON_INTERLEAVED = 32;
364
-
/// Synonmyn for the **IS_NON_MIXABLE** **StandardFlags**.
364
+
/// Synonym for the **IS_NON_MIXABLE** **StandardFlags**.
365
365
///
366
366
/// **Available** in OS X v10.3 and later.
367
367
constIS_NON_MIXABLE = 64;
@@ -443,7 +443,7 @@ pub enum Mpeg4ObjectId {
443
443
/// Transform-domain weighted interleaved vector quantization; an audio codec optimised for
444
444
/// audio coding at ultra low bit rates around 8kbit/s.
445
445
TwinVQ = 7,
446
-
/// Code Excited Linear Prdiction; a narrow-band/wide-band speech codec.
446
+
/// Code Excited Linear Prediction; a narrow-band/wide-band speech codec.
//! Original documentation [here](https://developer.apple.com/library/prerelease/mac/documentation/AudioUnit/Reference/AUComponentServicesReference/index.html#//apple_ref/doc/constant_group/Audio_Unit_Types).
4
4
5
5
/// Represents the different kinds of Audio Units that are available.
6
6
///
@@ -29,7 +29,7 @@ pub enum Type {
29
29
/// A format converter unit can transform audio formats, such as performing sample rate
30
30
/// conversion.
31
31
///
32
-
/// A format converter is also appropriate for dferred rendering and for effects such as
32
+
/// A format converter is also appropriate for deferred rendering and for effects such as
33
33
/// varispeed.
34
34
///
35
35
/// A format converter unit can ask for as much or as little audio input as it needs to produce
@@ -437,7 +437,7 @@ pub enum IOType {
437
437
VoiceProcessingIO = 1987078511,
438
438
/// Connects to device hardware for input, output, or simultaneous input and output.
439
439
/// Use it for playback, recording, or low-latency simultaneous input and output where echo
440
-
/// cancelation is not needed.
440
+
/// cancellation is not needed.
441
441
///
442
442
/// See <https://developer.apple.com/library/content/documentation/MusicAudio/Conceptual/AudioUnitHostingGuide_iOS/UsingSpecificAudioUnits/UsingSpecificAudioUnits.html>
0 commit comments