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
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -279,7 +279,7 @@ pub mod standard_flags {
279
279
/// the **AudioFormat** type.
280
280
///
281
281
/// Original documentation [here](https://developer.apple.com/library/mac/documentation/MusicAudio/Reference/CoreAudioDataTypesRef/#//apple_ref/doc/constant_group/AudioStreamBasicDescription_Flags).
282
-
pubflagsStandardFlags:u32{
282
+
pubstructStandardFlags:u32{
283
283
/// Set for floating point, clear for integer.
284
284
///
285
285
/// **Available** in OS X v10.2 and later.
@@ -337,7 +337,7 @@ pub mod linear_pcm_flags {
337
337
/// the **AudioFormat** type.
338
338
///
339
339
/// Original documentation [here](https://developer.apple.com/library/mac/documentation/MusicAudio/Reference/CoreAudioDataTypesRef/#//apple_ref/doc/constant_group/AudioStreamBasicDescription_Flags).
340
-
pubflagsLinearPCMFlags:u32{
340
+
pubstructLinearPCMFlags:u32{
341
341
/// Synonmyn for the **IS_FLOAT** **StandardFlags**.
342
342
///
343
343
/// **Available** in OS X v10.0 and later.
@@ -404,7 +404,7 @@ pub mod apple_lossless_flags {
404
404
/// the **AudioFormat** type.
405
405
///
406
406
/// Original documentation [here](https://developer.apple.com/library/mac/documentation/MusicAudio/Reference/CoreAudioDataTypesRef/#//apple_ref/doc/constant_group/AudioStreamBasicDescription_Flags).
407
-
pubflagsAppleLosslessFlags:u32{
407
+
pubstructAppleLosslessFlags:u32{
408
408
/// Sourced from 16 bit native endian signed integer data.
409
409
constBIT_16_SOURCE_DATA = 1,
410
410
/// Sourced from 20 bit native endian signed integer data aligned high in 24 bits.
@@ -483,7 +483,7 @@ pub mod audio_time_stamp_flags {
483
483
/// **Available** in OS X v10.0 and later.
484
484
///
485
485
/// Original Documentation [here](https://developer.apple.com/library/mac/documentation/MusicAudio/Reference/CoreAudioDataTypesRef/#//apple_ref/doc/constant_group/Audio_Time_Stamp_Flags).
0 commit comments