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
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -303,6 +303,7 @@ bitflags! {
303
303
/// the **AudioFormat** type.
304
304
///
305
305
/// Original documentation [here](https://developer.apple.com/library/mac/documentation/MusicAudio/Reference/CoreAudioDataTypesRef/#//apple_ref/doc/constant_group/AudioStreamBasicDescription_Flags).
306
+
#[derive(Copy,Clone,Debug)]
306
307
pubstructStandardFlags:u32{
307
308
/// Set for floating point, clear for integer.
308
309
///
@@ -357,6 +358,7 @@ bitflags! {
357
358
/// the **AudioFormat** type.
358
359
///
359
360
/// Original documentation [here](https://developer.apple.com/library/mac/documentation/MusicAudio/Reference/CoreAudioDataTypesRef/#//apple_ref/doc/constant_group/AudioStreamBasicDescription_Flags).
361
+
#[derive(Copy,Clone,Debug)]
360
362
pubstructLinearPcmFlags:u32{
361
363
/// Synonym for the **IS_FLOAT** **StandardFlags**.
362
364
///
@@ -420,6 +422,7 @@ bitflags! {
420
422
/// the **AudioFormat** type.
421
423
///
422
424
/// Original documentation [here](https://developer.apple.com/library/mac/documentation/MusicAudio/Reference/CoreAudioDataTypesRef/#//apple_ref/doc/constant_group/AudioStreamBasicDescription_Flags).
425
+
#[derive(Copy,Clone,Debug)]
423
426
pubstructAppleLosslessFlags:u32{
424
427
/// Sourced from 16 bit native endian signed integer data.
/// 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