Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CoreAudioTypes] Updates for Xcode13 Beta2 #12068

Merged
merged 1 commit into from
Jul 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/AudioToolbox/AudioType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,8 @@ public enum AudioChannelLabel : int { // UInt32 AudioChannelLabel
HoaAcn14 = (2 << 16) | 14,
HoaAcn15 = (2 << 16) | 15,
HoaAcn65024 = (2 << 16) | 65024,
HoaSn3d = HoaAcn0,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is it HoaAcn0 and not kAudioChannelLabel_HOA_ACN_0 ?
I also can't find these on the web docs, hmm

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah the full name is kAudioChannelLabel_HOA_ACN_0 but the enum elements that were already here were shortened to things like HoaAcn0 I guess just for easier usability!

HoaN3d = (3 << 16),
}

#if !COREBUILD
Expand Down