cidre 0.11.7

Apple frameworks bindings for rust
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
use crate::{
    at::audio::{StreamBasicDesc, ValueRange},
    four_cc_fmt_debug,
};

#[doc(alias = "AudioObjectID")]
#[derive(Debug, Eq, PartialEq, Copy, Clone)]
#[repr(transparent)]
pub struct Obj(pub u32);

#[doc(alias = "AudioClassID")]
#[derive(Eq, PartialEq, Copy, Clone)]
#[repr(transparent)]
pub struct Class(pub u32);

impl std::fmt::Debug for Class {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        four_cc_fmt_debug(self.0, "ca::Class", f)
    }
}

#[doc(alias = "AudioObjectPropertySelector")]
#[derive(Eq, PartialEq, Copy, Clone, Hash)]
#[repr(transparent)]
pub struct PropSelector(pub u32);

impl PropSelector {
    #[inline]
    pub const fn global_addr(self) -> PropAddr {
        PropAddr {
            selector: self,
            scope: PropScope::GLOBAL,
            element: PropElement::MAIN,
        }
    }

    #[inline]
    pub const fn input_addr(self) -> PropAddr {
        PropAddr {
            selector: self,
            scope: PropScope::INPUT,
            element: PropElement::MAIN,
        }
    }

    #[inline]
    pub const fn output_addr(self) -> PropAddr {
        PropAddr {
            selector: self,
            scope: PropScope::INPUT,
            element: PropElement::MAIN,
        }
    }

    #[inline]
    pub const fn addr(self, scope: PropScope, element: PropElement) -> PropAddr {
        PropAddr {
            selector: self,
            scope,
            element,
        }
    }
}

impl std::fmt::Debug for PropSelector {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        four_cc_fmt_debug(self.0, "ca::PropSelector", f)
    }
}

#[doc(alias = "AudioObjectPropertyScope")]
#[derive(Eq, PartialEq, Copy, Clone, Hash)]
#[repr(transparent)]
pub struct PropScope(pub u32);

impl std::fmt::Debug for PropScope {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        four_cc_fmt_debug(self.0, "ca::PropScope", f)
    }
}

#[doc(alias = "AudioObjectPropertyElement")]
#[derive(Debug, Eq, PartialEq, Copy, Clone, Hash)]
#[repr(transparent)]
pub struct PropElement(pub u32);

#[doc(alias = "AudioObjectPropertyAddress")]
#[derive(Debug, Eq, PartialEq, Hash)]
#[repr(C)]
pub struct PropAddr {
    pub selector: PropSelector,
    pub scope: PropScope,
    pub element: PropElement,
}

impl Default for PropAddr {
    fn default() -> Self {
        Self {
            selector: PropSelector::WILDCARD,
            scope: Default::default(),
            element: Default::default(),
        }
    }
}

/// The error constants unique to the HAL.
///
/// These are the error constants that are unique to the HAL. Note that the HAL's
/// functions can and will return other codes that are not listed here. While these
/// constants give a general idea of what might have gone wrong during the execution
/// of an API call, if an API call returns anything other than os::Status::NO_ERR
/// it is to be viewed as the same failure regardless of what constant is actually
/// returned.
pub mod hardware_err {
    use crate::os::Error;

    /// The function call requires that the hardware be running but it isn't.
    #[doc(alias = "kAudioHardwareNotRunningError")]
    pub const NOT_RUNNING: Error = Error::new_unchecked(i32::from_be_bytes(*b"stop"));

    /// The function call failed while doing something that doesn't provide any
    /// error messages.
    #[doc(alias = "kAudioHardwareUnspecifiedError")]
    pub const UNSPECIFIED: Error = Error::new_unchecked(i32::from_be_bytes(*b"what"));

    /// The AudioObject doesn't know about the property at the given address.
    #[doc(alias = "kAudioHardwareUnknownPropertyError")]
    pub const UNKNOWN_PROP: Error = Error::new_unchecked(i32::from_be_bytes(*b"who?"));

    /// An improperly sized buffer was provided when accessing the data of a
    /// property.
    #[doc(alias = "kAudioHardwareBadPropertySizeError")]
    pub const BAD_PROP_SIZE: Error = Error::new_unchecked(i32::from_be_bytes(*b"!siz"));

    /// The requested operation couldn't be completed.
    #[doc(alias = "kAudioHardwareIllegalOperationError")]
    pub const ILLEGAL_OP: Error = Error::new_unchecked(i32::from_be_bytes(*b"nope"));

    /// The AudioObjectID passed to the function doesn't map to a valid AudioObject.
    #[doc(alias = "kAudioHardwareBadObjectError")]
    pub const BAD_OBJ: Error = Error::new_unchecked(i32::from_be_bytes(*b"!obj"));

    /// The AudioObjectID passed to the function doesn't map to a valid AudioDevice.
    #[doc(alias = "kAudioHardwareBadDeviceError")]
    pub const BAD_DEVICE: Error = Error::new_unchecked(i32::from_be_bytes(*b"!dev"));

    /// The AudioObjectID passed to the function doesn't map to a valid AudioStream.
    #[doc(alias = "kAudioHardwareBadStreamError")]
    pub const BAD_STREAM: Error = Error::new_unchecked(i32::from_be_bytes(*b"!str"));

    /// The AudioObject doesn't support the requested operation.
    #[doc(alias = "kAudioHardwareUnsupportedOperationError")]
    pub const UNSUPPORTED_OP: Error = Error::new_unchecked(i32::from_be_bytes(*b"unop"));

    /// The AudioObject isn't ready to do the requested operation.
    #[doc(alias = "kAudioHardwareNotReadyError")]
    pub const NOT_READY: Error = Error::new_unchecked(i32::from_be_bytes(*b"nrdy"));

    /// The AudioStream doesn't support the requested format.
    #[doc(alias = "kAudioDeviceUnsupportedFormatError")]
    pub const UNSUPPORTED_FORMAT: Error = Error::new_unchecked(i32::from_be_bytes(*b"!dat"));

    /// The requested operation can't be completed because the process doesn't have
    /// permission.
    #[doc(alias = "kAudioDevicePermissionsError")]
    pub const PERMISSIONS: Error = Error::new_unchecked(i32::from_be_bytes(*b"!hog"));
}

impl Obj {
    /// This is the sentinel value. No object will have an ID whose value is 0.
    #[doc(alias = "kAudioObjectUnknown")]
    pub const UNKNOWN: Self = Self(0);
}

impl Default for Obj {
    fn default() -> Self {
        Self::UNKNOWN
    }
}

impl PropScope {
    /// The AudioObjectPropertyScope for properties that apply to the object as a
    /// whole. All objects have a global scope and for most it is their only scope.
    #[doc(alias = "kAudioObjectPropertyScopeGlobal")]
    pub const GLOBAL: Self = Self(u32::from_be_bytes(*b"glob"));

    /// The AudioObjectPropertyScope for properties that apply to the input side of
    /// an object.
    #[doc(alias = "kAudioDevicePropertyScopeInput")]
    #[doc(alias = "kAudioObjectPropertyScopeInput")]
    pub const INPUT: Self = Self(u32::from_be_bytes(*b"inpt"));

    /// The AudioObjectPropertyScope for properties that apply to the output side of
    /// an object.
    #[doc(alias = "kAudioDevicePropertyScopeOutput")]
    #[doc(alias = "kAudioObjectPropertyScopeOutput")]
    pub const OUTPUT: Self = Self(u32::from_be_bytes(*b"outp"));

    /// The AudioObjectPropertyScope for properties that apply to the play through
    /// side of an object.
    #[doc(alias = "kAudioDevicePropertyScopePlayThrough")]
    #[doc(alias = "kAudioObjectPropertyScopePlayThrough")]
    pub const PLAY_THROUGH: Self = Self(u32::from_be_bytes(*b"ptru"));

    #[doc(alias = "kAudioObjectPropertyScopeWildcard")]
    pub const WILDCARD: Self = Self(u32::from_be_bytes(*b"****"));
}

impl Default for PropScope {
    fn default() -> Self {
        Self::GLOBAL
    }
}

impl PropElement {
    /// The AudioObjectPropertyElement value for properties that apply to the main
    /// element or to the entire scope.
    #[doc(alias = "kAudioObjectPropertyElementMaster")] // replaced with main
    #[doc(alias = "kAudioObjectPropertyElementMain")]
    pub const MAIN: Self = Self(0);

    #[doc(alias = "kAudioObjectPropertyElementWildcard")]
    pub const WILDCARD: Self = Self(0xFFFFFFFF);
}

impl Default for PropElement {
    fn default() -> Self {
        Self::MAIN
    }
}

impl Class {
    #[doc(alias = "kAudioObjectClassIDWildcard")]
    pub const WILDCARD: Self = Self(u32::from_be_bytes(*b"****"));

    #[doc(alias = "kAudioObjectClassID")]
    pub const OBJECT: Self = Self(u32::from_be_bytes(*b"aobj"));

    #[doc(alias = "kAudioSystemObjectClassID")]
    pub const SYSTEM: Self = Self(u32::from_be_bytes(*b"asys"));

    /// The AudioClassId that identifies the AudioPlugIn class.
    #[doc(alias = "kAudioPlugInClassID")]
    pub const PLUG_IN: Self = Self(u32::from_be_bytes(*b"aplg"));

    /// The AudioClassId that identifies the AudioTransportManager class.
    #[doc(alias = "kAudioTransportManagerClassID")]
    pub const TRANSPORT_MANAGER: Self = Self(u32::from_be_bytes(*b"trpm"));

    /// The AudioClassId that identifies the AudioBox class.
    #[doc(alias = "kAudioBoxClassID")]
    pub const BOX: Self = Self(u32::from_be_bytes(*b"abox"));

    /// The AudioClassId that identifies the AudioDevice class.
    #[doc(alias = "kAudioDeviceClassID")]
    pub const DEVICE: Self = Self(u32::from_be_bytes(*b"adev"));

    /// The AudioClassId that identifies the AudioSubDevice class.
    #[doc(alias = "kAudioSubDeviceClassID")]
    pub const SUB_DEVICE: Self = Self(u32::from_be_bytes(*b"asub"));

    /// The AudioClassId that identifies the Tap class.
    ///
    /// The Tap class contains a list of input streams that originate from the output
    /// stream(s) of one or more processes.
    #[doc(alias = "kAudioTapClassID")]
    pub const TAP: Self = Self(u32::from_be_bytes(*b"tcls"));

    /// The AudioClassID that identifies the AudioSubTap class.
    #[doc(alias = "kAudioSubTapClassID")]
    pub const SUB_TAP: Self = Self(u32::from_be_bytes(*b"stap"));

    #[doc(alias = "kAudioEndPointClassID")]
    pub const END_POINT: Self = Self(u32::from_be_bytes(*b"endp"));

    /// The AudioClassId that identifies the AudioStream class.
    #[doc(alias = "kAudioStreamClassID")]
    pub const STREAM: Self = Self(u32::from_be_bytes(*b"astr"));

    /// The AudioClassId that identifies the Clock class.
    #[doc(alias = "kAudioClockDeviceClassID")]
    pub const CLOCK: Self = Self(u32::from_be_bytes(*b"aclk"));

    /// The AudioClassId that identifies the AudioControl class.
    #[doc(alias = "kAudioControlClassID")]
    pub const CONTROL: Self = Self(u32::from_be_bytes(*b"actl"));

    /// The AudioClassId that identifies the AudioSliderControl class.
    #[doc(alias = "kAudioSliderControlClassID")]
    pub const SLIDER_CONTROL: Self = Self(u32::from_be_bytes(*b"sldr"));

    /// The AudioClassId that identifies the LevelControl class.
    #[doc(alias = "kAudioLevelControlClassID")]
    pub const LEVEL_CONTROL: Self = Self(u32::from_be_bytes(*b"levl"));

    /// A subclass of the LevelControl class that implements a general
    /// gain/attenuation stage.
    #[doc(alias = "kAudioVolumeControlClassID")]
    pub const VOLUME_CONTROL: Self = Self(u32::from_be_bytes(*b"vlme"));

    /// A subclass of the LevelControl class for an LFE channel that results from
    /// bass management. Note that LFE channels that are represented as normal audio
    /// channels must use kAudioVolumeControlClassID to manipulate the level.
    #[doc(alias = "kAudioLFEVolumeControlClassID")]
    pub const LFE_VOLUME_CONTROL: Self = Self(u32::from_be_bytes(*b"subv"));

    /// The AudioClassID that identifies the BooleanControl class.
    #[doc(alias = "kAudioBooleanControlClassID")]
    pub const BOOLEAN_CONTROL: Self = Self(u32::from_be_bytes(*b"togl"));

    /// A subclass of the AudioBooleanControl class where a true value means that
    /// mute is enabled making that element inaudible.
    #[doc(alias = "kAudioMuteControlClassID")]
    pub const MUTE_CONTROL: Self = Self(u32::from_be_bytes(*b"mute"));

    /// A subclass of the AudioBooleanControl class where a true value means that
    /// solo is enabled making just that element audible and the other elements
    /// inaudible.
    #[doc(alias = "kAudioSoloControlClassID")]
    pub const SOLO_CONTROL: Self = Self(u32::from_be_bytes(*b"solo"));

    /// A subclass of the AudioBooleanControl class where a true value means
    /// something is plugged into that element.
    #[doc(alias = "kAudioJackControlClassID")]
    pub const JACK_CONTROL: Self = Self(u32::from_be_bytes(*b"jack"));

    /// A subclass of the AudioBooleanControl class where true means that mute is
    /// enabled making that LFE element inaudible. This control is for LFE channels
    /// that result from bass management. Note that LFE channels that are
    /// represented as normal audio channels must use an AudioMuteControl.
    #[doc(alias = "kAudioLFEMuteControlClassID")]
    pub const LFE_MUTE_CONTROL: Self = Self(u32::from_be_bytes(*b"subm"));

    /// A subclass of the AudioBooleanControl class where true means that the
    /// element's hardware has phantom power enabled.
    #[doc(alias = "kAudioPhantomPowerControlClassID")]
    pub const PHANTOM_POWER_CONTROL: Self = Self(u32::from_be_bytes(*b"phan"));

    /// A subclass of the AudioBooleanControl class where true means that the phase
    /// of the signal on the given element is being inverted by 180 degrees.
    #[doc(alias = "kAudioPhaseInvertControlClassID")]
    pub const PHASE_INVERT_CONTROL: Self = Self(u32::from_be_bytes(*b"phsi"));

    /// A subclass of the AudioBooleanControl class where true means that the signal
    /// for the element has exceeded the sample range. Once a clip light is turned
    /// on, it is to stay on until either the value of the control is set to false
    /// or the current IO session stops and a new IO session starts.
    #[doc(alias = "kAudioClipLightControlClassID")]
    pub const CLIP_LIGHT_CONTROL: Self = Self(u32::from_be_bytes(*b"clip"));

    /// An AudioBooleanControl where true means that the talkback channel is
    /// enabled. This control is for talkback channels that are handled outside of
    /// the regular IO channels. If the talkback channel is among the normal IO
    /// channels, it will use AudioMuteControl.
    #[doc(alias = "kAudioTalkbackControlClassID")]
    pub const TALKBACK_CONTROL: Self = Self(u32::from_be_bytes(*b"talb"));

    /// An AudioBooleanControl where true means that the listenback channel is
    /// audible. This control is for listenback channels that are handled outside of
    /// the regular IO channels. If the listenback channel is among the normal IO
    /// channels, it will use AudioMuteControl.
    #[doc(alias = "kAudioListenbackControlClassID")]
    pub const LISTENBACK_CONTROL: Self = Self(u32::from_be_bytes(*b"lsnb"));

    /// The AudioClassID that identifies the AudioSelectorControl class.
    #[doc(alias = "kAudioSelectorControlClassID")]
    pub const SELECTOR_CONTROL: Self = Self(u32::from_be_bytes(*b"slct"));

    /// A subclass of the AudioSelectorControl class that identifies where the data
    /// for the element is coming from.
    #[doc(alias = "kAudioDataSourceControlClassID")]
    pub const DATA_SRC_CONTROL: Self = Self(u32::from_be_bytes(*b"dsrc"));

    /// A subclass of the AudioSelectorControl class that identifies where the data
    /// for the element is going.
    #[doc(alias = "kAudioDataDestinationControlClassID")]
    pub const DATA_DST_CONTROL: Self = Self(u32::from_be_bytes(*b"dest"));

    /// A subclass of the AudioSelectorControl class that identifies where the
    /// timing info for the object is coming from.
    #[doc(alias = "kAudioClockSourceControlClassID")]
    pub const CLOCK_SRC_CONTROL: Self = Self(u32::from_be_bytes(*b"clck"));

    /// A subclass of the AudioSelectorControl class that identifies the nominal
    /// line level for the element. Note that this is not a gain stage but rather
    /// indicating the voltage standard (if any) used for the element, such as
    /// +4dBu, -10dBV, instrument, etc.
    #[doc(alias = "kAudioLineLevelControlClassID")]
    pub const LINE_LEVEL_CONTROL: Self = Self(u32::from_be_bytes(*b"nlvl"));

    /// A subclass of the AudioSelectorControl class that indicates the setting for
    /// the high pass filter on the given element.
    #[doc(alias = "kAudioHighPassFilterControlClassID")]
    pub const HIGH_PASS_FILTER_CONTROL: Self = Self(u32::from_be_bytes(*b"hipf"));

    /// The AudioClassId that identifies the StereoPanControl class.
    #[doc(alias = "kAudioStereoPanControlClassID")]
    pub const STEREO_PAN_CONTROL: Self = Self(u32::from_be_bytes(*b"span"));

    /// The AudioClassId that identifies the AudioAggregateDevice class.
    #[doc(alias = "kAudioAggregateDeviceClassID")]
    pub const AGGREGATE_DEVICE: Self = Self(u32::from_be_bytes(*b"aagg"));
}

impl PropSelector {
    #[doc(alias = "kAudioObjectPropertySelectorWildcard")]
    pub const WILDCARD: Self = Self(u32::from_be_bytes(*b"****"));

    /// An AudioClassId that identifies the class from which the class of the
    /// AudioObject is derived. This value must always be one of the standard
    /// classes.
    #[doc(alias = "kAudioObjectPropertyBaseClass")]
    pub const BASE_CLASS: Self = Self(u32::from_be_bytes(*b"bcls"));

    /// An AudioClassId that identifies the class of the AudioObject.
    #[doc(alias = "kAudioObjectPropertyClass")]
    pub const CLASS: Self = Self(u32::from_be_bytes(*b"clas"));

    /// An AudioObjectId that identifies the the AudioObject that owns the given
    /// AudioObject. Note that all AudioObjects are owned by some other AudioObject.
    /// The only exception is the AudioSystemObject, for which the value of this
    /// property is AudioObject::UNKNOWN.
    #[doc(alias = "kAudioObjectPropertyOwner")]
    pub const OWNER: Self = Self(u32::from_be_bytes(*b"stdv"));

    /// A cf::String that contains the human readable name of the object. The caller
    /// is responsible for releasing the returned cf::Object.
    #[doc(alias = "kAudioObjectPropertyName")]
    pub const NAME: Self = Self(u32::from_be_bytes(*b"lnam"));

    /// A cf::String that contains the human readable model name of the object. The
    /// model name differs from kAudioObjectPropertyName in that two objects of the
    /// same model will have the same value for this property but may have different
    /// values for kAudioObjectPropertyName.
    #[doc(alias = "kAudioObjectPropertyModelName")]
    pub const MODEL_NAME: Self = Self(u32::from_be_bytes(*b"lmod"));

    /// A cf::String that contains the human readable name of the manufacturer of the
    /// hardware the AudioObject is a part of. The caller is responsible for
    /// releasing the returned CFObject.
    #[doc(alias = "kAudioObjectPropertyManufacturer")]
    pub const MANUFACTURER: Self = Self(u32::from_be_bytes(*b"lmak"));

    /// A cf::String that contains a human readable name for the given element in the
    /// given scope. The caller is responsible for releasing the returned CFObject.
    #[doc(alias = "kAudioObjectPropertyElementName")]
    pub const ELEMENT_NAME: Self = Self(u32::from_be_bytes(*b"lchn"));

    /// A cf::String that contains a human readable name for the category of the given
    /// element in the given scope. The caller is responsible for releasing the
    /// returned CFObject.
    #[doc(alias = "kAudioObjectPropertyElementCategoryName")]
    pub const ELEMENT_CATEGORY_NAME: Self = Self(u32::from_be_bytes(*b"lccn"));

    /// A cf::String that contains a human readable name for the number of the given
    /// element in the given scope. The caller is responsible for releasing the
    /// returned CFObject.
    #[doc(alias = "kAudioObjectPropertyElementNumberName")]
    pub const ELEMENT_NUMBER_NAME: Self = Self(u32::from_be_bytes(*b"lcnn"));

    /// An array of AudioObjectIDs that represent all the AudioObjects owned by the
    /// given object. The qualifier is an array of AudioClassIDs. If it is
    /// non-empty, the returned array of AudioObjectIDs will only refer to objects
    /// whose class is in the qualifier array or whose is a subclass of one in the
    /// qualifier array.
    #[doc(alias = "kAudioObjectPropertyOwnedObjects")]
    pub const OWNED_OBJS: Self = Self(u32::from_be_bytes(*b"ownd"));

    /// A u32 where a value of one indicates that the object's hardware is
    /// drawing attention to itself, typically by flashing or lighting up its front
    /// panel display. A value of 0 indicates that this function is turned off. This
    /// makes it easy for a user to associate the physical hardware with its
    /// representation in an application. Typically, this property is only supported
    /// by AudioDevices and AudioBoxes.
    #[doc(alias = "kAudioObjectPropertyIdentify")]
    pub const IDENTIFY: Self = Self(u32::from_be_bytes(*b"iden"));

    /// A cf::String that contains the human readable serial number for the object.
    /// This property will typically be implemented by AudioBox and AudioDevice
    /// objects. Note that the serial number is not defined to be unique in the same
    /// way that an AudioBox's or AudioDevice's UID property are defined. This is
    /// purely an informational value. The caller is responsible for releasing the
    /// returned CFObject.
    #[doc(alias = "kAudioObjectPropertySerialNumber")]
    pub const SERIAL_NUMBER: Self = Self(u32::from_be_bytes(*b"snum"));

    /// A cf::String that contains the human readable firmware version for the object.
    /// This property will typically be implemented by AudioBox and AudioDevice
    /// objects. Note that this is purely an informational value. The caller is
    /// responsible for releasing the returned CFObject.
    #[doc(alias = "kAudioObjectPropertyFirmwareVersion")]
    pub const FIRMWARE_VERSION: Self = Self(u32::from_be_bytes(*b"fwvn"));
}

/// AudioPlugIn Properties
impl PropSelector {
    #[doc(alias = "kAudioPlugInPropertyBundleID")]
    pub const PLUG_IN_BUNDLE_ID: Self = Self(u32::from_be_bytes(*b"piid"));

    #[doc(alias = "kAudioPlugInPropertyDeviceList")]
    pub const PLUG_IN_DEVICE_LIST: Self = Self(u32::from_be_bytes(*b"dev#"));

    #[doc(alias = "kAudioPlugInPropertyTranslateUIDToDevice")]
    pub const PLUG_IN_TRANSLATE_UID_TO_DEVICE: Self = Self(u32::from_be_bytes(*b"uidd"));

    #[doc(alias = "kAudioPlugInPropertyBoxList")]
    pub const PLUG_IN_BOX_LIST: Self = Self(u32::from_be_bytes(*b"box#"));

    #[doc(alias = "kAudioPlugInPropertyTranslateUIDToBox")]
    pub const PLUG_IN_TRANSLATE_UID_TO_BOX: Self = Self(u32::from_be_bytes(*b"uidb"));

    #[doc(alias = "kAudioPlugInPropertyClockDeviceList")]
    pub const PLUG_IN_CLOCK_DEVICE_LIST: Self = Self(u32::from_be_bytes(*b"clk#"));

    #[doc(alias = "kAudioPlugInPropertyTranslateUIDToClockDevice")]
    pub const PLUG_IN_TRANSLATE_UID_TO_CLOCK_DEVICE: Self = Self(u32::from_be_bytes(*b"uidc"));
}

/// AudioTransportManager Properties
impl PropSelector {
    #[doc(alias = "kAudioTransportManagerPropertyEndPointList")]
    pub const TRANSPORT_MANAGER_END_POINT_LIST: Self = Self(u32::from_be_bytes(*b"end#"));

    #[doc(alias = "kAudioTransportManagerPropertyTranslateUIDToEndPoint")]
    pub const TRANSPORT_MANAGER_TRANSLATE_UID_TO_END_POINT: Self =
        Self(u32::from_be_bytes(*b"uide"));

    #[doc(alias = "kAudioTransportManagerPropertyTransportType")]
    pub const TRANSPORT_MANAGER_TRANSPORT_TYPE: Self = Self(u32::from_be_bytes(*b"tran"));
}

/// AudioObjectPropertySelector values provided by the AudioBox class.
impl PropSelector {
    #[doc(alias = "kAudioBoxPropertyBoxUID")]
    pub const BOX_UID: Self = Self(u32::from_be_bytes(*b"buid"));

    #[doc(alias = "kAudioBoxPropertyTransportType")]
    pub const BOX_TRANSPORT_TYPE: Self = Self(u32::from_be_bytes(*b"tran"));

    #[doc(alias = "kAudioBoxPropertyHasAudio")]
    pub const BOX_HAS_AUDIO: Self = Self(u32::from_be_bytes(*b"bhau"));

    #[doc(alias = "kAudioBoxPropertyHasVideo")]
    pub const BOX_HAS_VIDEO: Self = Self(u32::from_be_bytes(*b"bhvi"));

    #[doc(alias = "kAudioBoxPropertyHasMIDI")]
    pub const BOX_HAS_MIDI: Self = Self(u32::from_be_bytes(*b"bhmi"));

    #[doc(alias = "kAudioBoxPropertyIsProtected")]
    pub const BOX_IS_PROTECTED: Self = Self(u32::from_be_bytes(*b"bpro"));

    #[doc(alias = "kAudioBoxPropertyAcquired")]
    pub const BOX_ACQUIRED: Self = Self(u32::from_be_bytes(*b"bxon"));

    #[doc(alias = "kAudioBoxPropertyAcquisitionFailed")]
    pub const BOX_ACQUISITION_FAILED: Self = Self(u32::from_be_bytes(*b"bxof"));

    #[doc(alias = "kAudioBoxPropertyDeviceList")]
    pub const BOX_DEVICE_LIST: Self = Self(u32::from_be_bytes(*b"bdv#"));

    #[doc(alias = "kAudioBoxPropertyClockDeviceList")]
    pub const BOX_CLOCK_DEVICE_LIST: Self = Self(u32::from_be_bytes(*b"bcl#"));
}

/// Transport Type IDs
#[doc(alias = "AudioDeviceTransportType")]
#[derive(Eq, PartialEq, Copy, Clone)]
pub struct DeviceTransportType(pub u32);

impl DeviceTransportType {
    /// The transport type ID returned when a device doesn't provide a transport type.
    #[doc(alias = "kAudioDeviceTransportTypeUnknown")]
    pub const UNKNOWN: Self = Self(0);

    /// The transport type ID for AudioDevices built into the system.
    #[doc(alias = "kAudioDeviceTransportTypeBuiltIn")]
    pub const BUILT_IN: Self = Self(u32::from_be_bytes(*b"bltn"));

    /// The transport type ID for aggregate devices.
    #[doc(alias = "kAudioDeviceTransportTypeAggregate")]
    pub const AGGREGATE: Self = Self(u32::from_be_bytes(*b"grup"));

    /// The transport type ID for AudioDevices that don't correspond to real audio hardware.
    #[doc(alias = "kAudioDeviceTransportTypeVirtual")]
    pub const VIRTUAL: Self = Self(u32::from_be_bytes(*b"virt"));

    /// The transport type ID for AudioDevices connected via the PCI bus.
    #[doc(alias = "kAudioDeviceTransportTypePCI")]
    pub const PCI: Self = Self(u32::from_be_bytes(*b"pci "));

    /// The transport type ID for AudioDevices connected via USB.
    #[doc(alias = "kAudioDeviceTransportTypeUSB")]
    pub const USB: Self = Self(u32::from_be_bytes(*b"usb "));

    /// The transport type ID for AudioDevices connected via FireWire.
    #[doc(alias = "kAudioDeviceTransportTypeFireWire")]
    pub const FIRE_WIRE: Self = Self(u32::from_be_bytes(*b"1394"));

    /// The transport type ID for AudioDevices connected via Bluetooth.
    #[doc(alias = "kAudioDeviceTransportTypeBluetooth")]
    pub const BLUETOOTH: Self = Self(u32::from_be_bytes(*b"blue"));

    /// The transport type ID for AudioDevices connected via Bluetooth Low Energy.
    #[doc(alias = "kAudioDeviceTransportTypeBluetoothLE")]
    pub const BLUETOOTH_LE: Self = Self(u32::from_be_bytes(*b"blea"));

    /// The transport type ID for AudioDevices connected via HDMI.
    #[doc(alias = "kAudioDeviceTransportTypeHDMI")]
    pub const HDMI: Self = Self(u32::from_be_bytes(*b"hdmi"));

    /// The transport type ID for AudioDevices connected via DisplayPort.
    #[doc(alias = "kAudioDeviceTransportTypeDisplayPort")]
    pub const DISPLAY_PORT: Self = Self(u32::from_be_bytes(*b"dprt"));

    /// The transport type ID for AudioDevices connected via AirPlay.
    #[doc(alias = "kAudioDeviceTransportTypeAirPlay")]
    pub const AIR_PLAY: Self = Self(u32::from_be_bytes(*b"airp"));

    /// The transport type ID for AudioDevices connected via AVB.
    #[doc(alias = "kAudioDeviceTransportTypeAVB")]
    pub const AVB: Self = Self(u32::from_be_bytes(*b"eavb"));

    /// The transport type ID for AudioDevices connected via Thunderbolt.
    #[doc(alias = "kAudioDeviceTransportTypeThunderbolt")]
    pub const THUNDERBOLT: Self = Self(u32::from_be_bytes(*b"thun"));

    /// The transport type ID for Continuity Capture AudioDevices connected via a cable.
    #[doc(alias = "kAudioDeviceTransportTypeContinuityCaptureWired")]
    pub const CONTINUITY_CAPTURE_WIRED: Self = Self(u32::from_be_bytes(*b"ccwd"));

    /// The transport type ID for Continuity Capture AudioDevices connected via wireless networking.
    #[doc(alias = "kAudioDeviceTransportTypeContinuityCaptureWireless")]
    pub const CONTINUITY_CAPTURE_WIRELESS: Self = Self(u32::from_be_bytes(*b"ccwl"));
}

impl std::fmt::Debug for DeviceTransportType {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        four_cc_fmt_debug(self.0, "ca::DeviceTransportType", f)
    }
}

/// Values provided by the AudioDevice class
impl PropSelector {
    /// A cf::String that contains the bundle ID for an application that provides a
    /// GUI for configuring the AudioDevice.
    ///
    /// By default, the value of this property
    /// is the bundle ID for Audio MIDI Setup. The caller is responsible for
    /// releasing the returned cf::Obj.
    #[doc(alias = "kAudioDevicePropertyConfigurationApplication")]
    pub const DEVICE_CONFIGURATION_APP: Self = Self(u32::from_be_bytes(*b"capp"));

    /// A cf::String that contains a persistent identifier for the AudioDevice. An
    /// AudioDevice's UID is persistent across boots. The content of the UID string
    /// is a black box and may contain information that is unique to a particular
    /// instance of an AudioDevice's hardware or unique to the CPU. Therefore they
    /// are not suitable for passing between CPUs or for identifying similar models
    /// of hardware. The caller is responsible for releasing the returned cf::Obj.
    #[doc(alias = "kAudioDevicePropertyDeviceUID")]
    pub const DEVICE_UID: Self = Self(u32::from_be_bytes(*b"uid "));

    /// A cf::String that contains a persistent identifier for the model of an
    /// AudioDevice. The identifier is unique such that the identifier from two
    /// AudioDevices are equal if and only if the two AudioDevices are the exact
    /// same model from the same manufacturer. Further, the identifier has to be the
    /// same no matter on what machine the AudioDevice appears. The caller is
    /// responsible for releasing the returned cf::Obj.
    #[doc(alias = "kAudioDevicePropertyModelUID")]
    pub const DEVICE_MODEL_UID: Self = Self(u32::from_be_bytes(*b"muid"));

    /// A u32 whose value indicates how the AudioDevice is connected to the CPU.
    /// Constants for some of the values for this property can be found in the enum
    /// in the AudioDevice Constants section of this file.
    #[doc(alias = "kAudioDevicePropertyTransportType")]
    pub const DEVICE_TRANSPORT_TYPE: Self = Self(u32::from_be_bytes(*b"tran"));

    ///  An array of AudioDeviceIDs for devices related to the AudioDevice. For
    /// IOAudio-based devices, AudioDevices are related if they share the same
    /// IOAudioDevice object.
    #[doc(alias = "kAudioDevicePropertyRelatedDevices")]
    pub const DEVICE_RELATED_DEVICES: Self = Self(u32::from_be_bytes(*b"akin"));

    /// A u32 whose value indicates the clock domain to which this AudioDevice
    /// belongs. AudioDevices that have the same value for this property are able to
    /// be synchronized in hardware. However, a value of 0 indicates that the clock
    /// domain for the device is unspecified and should be assumed to be separate
    /// from every other device's clock domain, even if they have the value of 0 as
    /// their clock domain as well.
    #[doc(alias = "kAudioDevicePropertyClockDomain")]
    pub const DEVICE_CLOCK_DOMAIN: Self = Self(u32::from_be_bytes(*b"clkd"));

    /// A u32 where a value of 1 means the device is ready and available and 0
    /// means the device is unusable and will most likely go away shortly.
    #[doc(alias = "kAudioDevicePropertyDeviceIsAlive")]
    pub const DEVICE_IS_ALIVE: Self = Self(u32::from_be_bytes(*b"livn"));

    ///  A u32 where a value of 0 means the AudioDevice is not performing IO and
    /// a value of 1 means that it is. Note that the device can be running even if
    /// there are no active IOProcs such as by calling AudioDeviceStart() and
    /// passing a NULL IOProc. Note that the notification for this property is
    /// usually sent from the AudioDevice's IO thread.
    #[doc(alias = "kAudioDevicePropertyDeviceIsRunning")]
    pub const DEVICE_IS_RUNNING: Self = Self(u32::from_be_bytes(*b"goin"));

    /// A u32 where 1 means that the AudioDevice is a possible selection for
    /// kAudioHardwarePropertyDefaultInputDevice or
    /// kAudioHardwarePropertyDefaultOutputDevice depending on the scope.
    #[doc(alias = "kAudioDevicePropertyDeviceCanBeDefaultDevice")]
    pub const DEVICE_CAN_BE_DEFAULT_DEVICE: Self = Self(u32::from_be_bytes(*b"dflt"));

    /// A u32 where 1 means that the AudioDevice is a possible selection for
    /// kAudioHardwarePropertyDefaultSystemOutputDevice.
    #[doc(alias = "kAudioDevicePropertyDeviceCanBeDefaultSystemDevice")]
    pub const DEVICE_CAN_BE_DEFAULT_SYS_DEVICE: Self = Self(u32::from_be_bytes(*b"sflt"));

    /// A u32 containing the number of frames of latency in the AudioDevice. Note
    /// that input and output latency may differ. Further, the AudioDevice's
    /// AudioStreams may have additional latency so they should be queried as well.
    /// If both the device and the stream say they have latency, then the total
    /// latency for the stream is the device latency summed with the stream latency.
    #[doc(alias = "kAudioDevicePropertyLatency")]
    pub const DEVICE_LATENCY: Self = Self(u32::from_be_bytes(*b"ltnc"));

    /// An array of AudioStreamIDs that represent the AudioStreams of the
    /// AudioDevice. Note that if a notification is received for this property, any
    /// cached AudioStreamIDs for the device become invalid and need to be
    /// re-fetched.
    #[doc(alias = "kAudioDevicePropertyStreams")]
    pub const DEVICE_STREAMS: Self = Self(u32::from_be_bytes(*b"stm#"));

    /// An array of AudioObjectIDs that represent the AudioControls of the
    /// AudioDevice. Note that if a notification is received for this property, any
    /// cached AudioObjectIDs for the device become invalid and need to be
    /// re-fetched.
    #[doc(alias = "kAudioObjectPropertyControlList")]
    pub const CTRL_LIST: Self = Self(u32::from_be_bytes(*b"ctrl"));

    /// A u32 whose value indicates the number for frames in ahead (for output)
    /// or behind (for input the current hardware position that is safe to do IO.
    #[doc(alias = "kAudioDevicePropertySafetyOffset")]
    pub const DEVICE_SAFETY_OFFSET: Self = Self(u32::from_be_bytes(*b"saft"));

    /// A f64 that indicates the current nominal sample rate of the AudioDevice.
    #[doc(alias = "kAudioDevicePropertyNominalSampleRate")]
    pub const DEVICE_NOMINAL_SAMPLE_RATE: Self = Self(u32::from_be_bytes(*b"nsrt"));

    /// An array of AudioValueRange structs that indicates the valid ranges for the
    /// nominal sample rate of the AudioDevice.
    #[doc(alias = "kAudioDevicePropertyAvailableNominalSampleRates")]
    pub const DEVICE_AVAILABLE_NOMINAL_SAMPLE_RATES: Self = Self(u32::from_be_bytes(*b"nsr#"));

    /// A cf::Url that indicates an image file that can be used to represent the
    /// device visually. The caller is responsible for releasing the returned
    /// cf::Obj.
    #[doc(alias = "kAudioDevicePropertyIcon")]
    pub const DEVICE_ICON: Self = Self(u32::from_be_bytes(*b"icon"));

    /// A u32 where a non-zero value indicates that the device is not included
    /// in the normal list of devices provided by kAudioHardwarePropertyDevices nor
    /// can it be the default device. Hidden devices can only be discovered by
    /// knowing their UID and using kAudioHardwarePropertyDeviceForUID.
    #[doc(alias = "kAudioDevicePropertyIsHidden")]
    pub const DEVICE_IS_HIDDEN: Self = Self(u32::from_be_bytes(*b"hidn"));

    /// An array of two u32s, the first for the left channel, the second for the
    /// right channel, that indicate the channel numbers to use for stereo IO on the
    /// device. The value of this property can be different for input and output and
    /// there are no restrictions on the channel numbers that can be used.
    #[doc(alias = "kAudioDevicePropertyPreferredChannelsForStereo")]
    pub const DEVICE_PREFERRED_CHANNELS_FOR_STEREO: Self = Self(u32::from_be_bytes(*b"dch2"));

    /// An AudioChannelLayout that indicates how each channel of the AudioDevice
    /// should be used.
    #[doc(alias = "kAudioDevicePropertyPreferredChannelLayout")]
    pub const DEVICE_PREFERRED_CHANNEL_LAYOUT: Self = Self(u32::from_be_bytes(*b"srnd"));
}

#[doc(alias = "AudioStreamRangedDescription")]
#[derive(Debug, PartialEq, Clone, Copy)]
#[repr(C)]
pub struct StreamRangedDesc {
    pub format: StreamBasicDesc,
    pub sample_rate_range: ValueRange,
}

/// AudioObjectPropertySelector values provided by the AudioStream class.
impl PropSelector {
    /// A u32 where a non-zero value indicates that the stream is enabled and
    /// doing IO.
    #[doc(alias = "kAudioStreamPropertyIsActive")]
    pub const STREAM_IS_ACTIVE: Self = Self(u32::from_be_bytes(*b"sact"));

    /// A u32 where a value of 0 means that this AudioStream is an output stream
    /// and a value of 1 means that it is an input stream.
    #[doc(alias = "kAudioStreamPropertyDirection")]
    pub const STREAM_DIRECTION: Self = Self(u32::from_be_bytes(*b"sdir"));

    /// A u32 whose value describes the general kind of functionality attached
    /// to the AudioStream.
    #[doc(alias = "kAudioStreamPropertyTerminalType")]
    pub const STREAM_TERMINAL_TYPE: Self = Self(u32::from_be_bytes(*b"term"));

    /// A u32 that specifies the first element in the owning device that
    /// corresponds to element one of this stream.
    #[doc(alias = "kAudioStreamPropertyStartingChannel")]
    pub const STREAM_STARTING_CHANNEL: Self = Self(u32::from_be_bytes(*b"schn"));

    /// A u32 containing the number of frames of latency in the AudioStream. Note
    /// that the owning AudioDevice may have additional latency so it should be
    /// queried as well. If both the device and the stream say they have latency,
    /// then the total latency for the stream is the device latency summed with the
    /// stream latency.
    #[doc(alias = "kAudioStreamPropertyLatency")]
    pub const STREAM_LATENCY: Self = Self::DEVICE_LATENCY;

    /// An AudioStreamBasicDescription that describes the current data format for
    /// the AudioStream. The virtual format refers to the data format in which all
    /// IOProcs for the owning AudioDevice will perform IO transactions.
    #[doc(alias = "kAudioStreamPropertyVirtualFormat")]
    pub const STREAM_VIRTUAL_FORMAT: Self = Self(u32::from_be_bytes(*b"sfmt"));

    /// An array of AudioStreamRangedDescriptions that describe the available data
    /// formats for the AudioStream. The virtual format refers to the data format in
    /// which all IOProcs for the owning AudioDevice will perform IO transactions.
    #[doc(alias = "kAudioStreamPropertyAvailableVirtualFormats")]
    pub const STREAM_AVAILABLE_VIRTUAL_FORMATS: Self = Self(u32::from_be_bytes(*b"sfma"));

    /// An AudioStreamBasicDescription that describes the current data format for
    /// the AudioStream. The physical format refers to the data format in which the
    /// hardware for the owning AudioDevice performs its IO transactions.
    #[doc(alias = "kAudioStreamPropertyPhysicalFormat")]
    pub const STREAM_PHYSICAL_FORMAT: Self = Self(u32::from_be_bytes(*b"pft "));

    /// An array of AudioStreamRangedDescriptions that describe the available data
    /// formats for the AudioStream. The physical format refers to the data format
    /// in which the hardware for the owning AudioDevice performs its IO
    /// transactions.
    #[doc(alias = "kAudioStreamPropertyAvailablePhysicalFormats")]
    pub const STREAM_AVAILABLE_PHYSICAL_FORMATS: Self = Self(u32::from_be_bytes(*b"pfta"));
}

#[derive(Eq, PartialEq, Copy, Clone)]
#[repr(C)]
pub struct StreamTerminalType(pub u32);

impl StreamTerminalType {
    /// The ID used when the terminal type for the AudioStream is non known.
    #[doc(alias = "kAudioStreamTerminalTypeUnknown")]
    pub const UNKNOWN: Self = Self(032);

    /// The ID for a terminal type of a line level stream. Note that this applies to
    /// both input streams and output streams
    #[doc(alias = "kAudioStreamTerminalTypeLine")]
    pub const LINE: Self = Self(u32::from_be_bytes(*b"line"));

    /// The ID for a terminal type of stream from/to a digital audio interface as
    /// defined by ISO 60958 (aka SPDIF or AES/EBU). Note that this applies to both
    /// input streams and output streams
    #[doc(alias = "kAudioStreamTerminalTypeDigitalAudioInterface")]
    pub const DIGITAL_AUDIO_INTERFACE: Self = Self(u32::from_be_bytes(*b"spdf"));

    /// The ID for a terminal type of a speaker.
    #[doc(alias = "kAudioStreamTerminalTypeSpeaker")]
    pub const SPEAKER: Self = Self(u32::from_be_bytes(*b"spkr"));

    /// The ID for a terminal type of headphones.
    #[doc(alias = "kAudioStreamTerminalTypeHeadphones")]
    pub const HEADPHONES: Self = Self(u32::from_be_bytes(*b"hdph"));

    /// The ID for a terminal type of a speaker for low frequency effects.
    #[doc(alias = "kAudioStreamTerminalTypeLFESpeaker")]
    pub const LFE_SPEAKER: Self = Self(u32::from_be_bytes(*b"lfes"));

    /// The ID for a terminal type of a speaker on a telephone handset receiver.
    #[doc(alias = "kAudioStreamTerminalTypeReceiverSpeaker")]
    pub const RECEIVER_SPEAKER: Self = Self(u32::from_be_bytes(*b"rspk"));

    /// The ID for a terminal type of a microphone.
    #[doc(alias = "kAudioStreamTerminalTypeMicrophone")]
    pub const MIC: Self = Self(u32::from_be_bytes(*b"micr"));

    /// The ID for a terminal type of a microphone attached to an headset.
    #[doc(alias = "kAudioStreamTerminalTypeHeadsetMicrophone")]
    pub const HEADSET_MIC: Self = Self(u32::from_be_bytes(*b"hmic"));

    /// The ID for a terminal type of a microphone on a telephone handset receiver.
    #[doc(alias = "kAudioStreamTerminalTypeReceiverMicrophone")]
    pub const RECEIVER_MIC: Self = Self(u32::from_be_bytes(*b"rmic"));

    /// The ID for a terminal type of a device providing a TTY signal.
    #[doc(alias = "kAudioStreamTerminalTypeTTY")]
    pub const TTY: Self = Self(u32::from_be_bytes(*b"tty_"));

    /// The ID for a terminal type of a stream from/to an HDMI port.
    #[doc(alias = "kAudioStreamTerminalTypeHDMI")]
    pub const HDMI: Self = Self(u32::from_be_bytes(*b"hdmi"));

    /// The ID for a terminal type of a stream from/to an DisplayPort port.
    #[doc(alias = "kAudioStreamTerminalTypeDisplayPort")]
    pub const DISPLAY_PORT: Self = Self(u32::from_be_bytes(*b"dprt"));
}

impl std::fmt::Debug for StreamTerminalType {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        four_cc_fmt_debug(self.0, "ca::StreamTerminalType", f)
    }
}

/// ca::PropSelector values provided by the AudioClockDevice class.
///
/// The AudioClockDevice class is a subclass of the AudioObject class. The class has just
/// the global scope, kAudioObjectPropertyScopeGlobal, and only a main element.
impl PropSelector {
    /// A CFString that contains a persistent identifier for the AudioClockDevice.
    /// An AudioClockDevice's UID is persistent across boots. The content of the UID
    /// string is a black box and may contain information that is unique to a
    /// particular instance of an clock's hardware or unique to the CPU. Therefore
    /// they are not suitable for passing between CPUs or for identifying similar
    /// models of hardware. The caller is responsible for releasing the returned
    /// CFObject.
    #[doc(alias = "kAudioClockDevicePropertyDeviceUID")]
    pub const CLOCK_DEVICE_UID: Self = Self(u32::from_be_bytes(*b"cuid"));

    /// A u32 whose value indicates how the AudioClockDevice is connected to the
    /// CPU. Constants for some of the values for this property can be found in the
    /// enum in the AudioDevice Constants section of this file.
    #[doc(alias = "kAudioClockDevicePropertyTransportType")]
    pub const CLOCK_DEVICE_TRANSPORT_TYPE: Self = Self(u32::from_be_bytes(*b"tran"));

    /// A u32 whose value indicates the clock domain to which this
    /// AudioClockDevice belongs. AudioClockDevices and AudioDevices that have the
    /// same value for this property are able to be synchronized in hardware.
    /// However, a value of 0 indicates that the clock domain for the device is
    /// unspecified and should be assumed to be separate from every other device's
    /// clock domain, even if they have the value of 0 as their clock domain as well.
    #[doc(alias = "kAudioClockDevicePropertyClockDomain")]
    pub const CLOCK_DEVICE_DOMAIN: Self = Self(u32::from_be_bytes(*b"clkd"));

    /// A UInt32 where a value of 1 means the device is ready and available and 0
    /// means the device is usable and will most likely go away shortly.
    #[doc(alias = "kAudioClockDevicePropertyDeviceIsAlive")]
    pub const CLOCK_DEVICE_IS_ALIVE: Self = Self(u32::from_be_bytes(*b"livn"));

    /// A UInt32 where a value of 0 means the AudioClockDevice is not providing
    /// times and a value of 1 means that it is. Note that the notification for this
    /// property is usually sent from the AudioClockDevice's IO thread.
    #[doc(alias = "kAudioClockDevicePropertyDeviceIsRunning")]
    pub const CLOCK_DEVICE_IS_RUNNING: Self = Self(u32::from_be_bytes(*b"goin"));

    /// A u32 containing the number of frames of latency in the AudioClockDevice.
    #[doc(alias = "kAudioClockDevicePropertyLatency")]
    pub const CLOCK_DEVICE_LATENCY: Self = Self(u32::from_be_bytes(*b"ltnc"));

    /// An array of AudioObjectIDs that represent the AudioControls of the
    /// AudioClockDevice. Note that if a notification is received for this property,
    /// any cached AudioObjectIDs for the device become invalid and need to be
    /// re-fetched.
    #[doc(alias = "kAudioClockDevicePropertyControlList")]
    pub const CLOCK_DEVICE_CONTROL_LIST: Self = Self(u32::from_be_bytes(*b"ctrl"));

    /// A Float64 that indicates the current nominal sample rate of the
    /// AudioClockDevice.
    #[doc(alias = "kAudioClockDevicePropertyNominalSampleRate")]
    pub const CLOCK_DEVICE_NOMINAL_SAMPLE_RATE: Self = Self(u32::from_be_bytes(*b"nsrt"));

    /// An array of AudioValueRange structs that indicates the valid ranges for the
    /// nominal sample rate of the AudioClockDevice.
    #[doc(alias = "kAudioClockDevicePropertyAvailableNominalSampleRates")]
    pub const CLOCK_DEVICE_AVAILABLE_NOMINAL_SAMPLE_RATES: Self =
        Self(u32::from_be_bytes(*b"nsr#"));
}