diff --git a/src/AudioToolbox/Enums.cs b/src/AudioToolbox/Enums.cs index d4ea1da27de4..4851d433820c 100644 --- a/src/AudioToolbox/Enums.cs +++ b/src/AudioToolbox/Enums.cs @@ -49,4 +49,18 @@ public enum AUSpatialMixerSourceMode : uint AmbienceBed = 3, } + [NoWatch] + [TV (16, 0)] + [Mac (13, 0)] + [iOS (16, 0)] + public enum AUSpatialMixerPersonalizedHrtfMode : uint + { + [NoiOS, NoTV] + Off = 0, + [NoiOS, NoTV] + On = 1, + [NoiOS, NoTV] + Auto = 2, + } + } diff --git a/src/AudioUnit/AUEnums.cs b/src/AudioUnit/AUEnums.cs index f0cd675e4ae6..60d2d3808736 100644 --- a/src/AudioUnit/AUEnums.cs +++ b/src/AudioUnit/AUEnums.cs @@ -892,6 +892,16 @@ public enum AUVoiceIOSpeechActivityEvent : uint Ended = 1, } + [iOS (16,0), TV (16,0), Mac (13,0), MacCatalyst (16,0)] + public enum AudioUnitEventType : uint + { + ParameterValueChange = 0, + BeginParameterChangeGesture = 1, + EndParameterChangeGesture = 2, + PropertyChange = 3, + } + + public enum AudioUnitSubType : uint { AUConverter = 0x636F6E76, // 'conv' diff --git a/src/AudioUnit/AudioComponent.cs b/src/AudioUnit/AudioComponent.cs index 13e772338da1..be76dc9da503 100644 --- a/src/AudioUnit/AudioComponent.cs +++ b/src/AudioUnit/AudioComponent.cs @@ -523,6 +523,181 @@ public double LastActiveTime { #endif #if IOS || MONOMAC + +#if NET + [SupportedOSPlatform ("macos13.0")] + [SupportedOSPlatform ("ios16.0")] + [SupportedOSPlatform ("maccatalyst16.0")] + [UnsupportedOSPlatform ("tvos")] +#else + [NoWatch] + [NoTV] + [Mac (13,0)] + [iOS (16,0)] +#endif + [DllImport (Constants.AudioUnitLibrary)] + static extern int AudioComponentCopyConfigurationInfo (IntPtr /* AudioComponent */ inComponent, out /* CFDictionaryRef** */ IntPtr outConfigurationInfo); + +#if NET + [SupportedOSPlatform ("macos13.0")] + [SupportedOSPlatform ("ios16.0")] + [SupportedOSPlatform ("maccatalyst16.0")] + [UnsupportedOSPlatform ("tvos")] +#else + [NoWatch] + [NoTV] + [Mac (13,0)] + [iOS (16,0)] +#endif + public NSDictionary? GetConfigurationInfo (out int resultCode) { + resultCode = AudioComponentCopyConfigurationInfo (GetCheckedHandle (), out var dictPtr); + if (resultCode == 0) { + return Runtime.GetNSObject (dictPtr, owns: true); + } + return null; + } + +#if NET + [SupportedOSPlatform ("macos13.0")] + [SupportedOSPlatform ("ios16.0")] + [SupportedOSPlatform ("maccatalyst16.0")] + [UnsupportedOSPlatform ("tvos")] +#else + [NoWatch] + [NoTV] + [Mac (13,0)] + [iOS (16,0)] +#endif + public NSDictionary? GetConfigurationInfo () => GetConfigurationInfo (out var _); + +#if NET + [SupportedOSPlatform ("macos13.0")] + [SupportedOSPlatform ("ios16.0")] + [SupportedOSPlatform ("maccatalyst16.0")] + [UnsupportedOSPlatform ("tvos")] +#else + [NoWatch] + [NoTV] + [Mac (13,0)] + [iOS (16,0)] + [MacCatalyst (16,0)] +#endif + [DllImport (Constants.AudioUnitLibrary)] + static extern int AudioComponentValidate (IntPtr /* AudioComponent* */ inComponent, IntPtr /* CFDictionaryRef* */ inValidationParameters, + out AudioComponentValidationResult outValidationResult); + +#if NET + [SupportedOSPlatform ("macos13.0")] + [SupportedOSPlatform ("ios16.0")] + [SupportedOSPlatform ("maccatalyst16.0")] + [UnsupportedOSPlatform ("tvos")] +#else + [NoWatch] + [NoTV] + [Mac (13,0)] + [iOS (16,0)] + [MacCatalyst (16,0)] +#endif + public AudioComponentValidationResult Validate (NSDictionary? validationParameters, out int resultCode) { + resultCode = AudioComponentValidate (GetCheckedHandle (), validationParameters.GetHandle (), out var result); + if (resultCode == 0) + return result; + return AudioComponentValidationResult.Unknown; + } + +#if NET + [SupportedOSPlatform ("macos13.0")] + [SupportedOSPlatform ("ios16.0")] + [SupportedOSPlatform ("maccatalyst16.0")] + [UnsupportedOSPlatform ("tvos")] +#else + [NoWatch] + [NoTV] + [Mac (13,0)] + [iOS (16,0)] + [MacCatalyst (16,0)] +#endif + public AudioComponentValidationResult Validate (NSDictionary? validationParameters = null) => Validate (validationParameters, out var _); + + delegate void TrampolineCallback (IntPtr blockPtr, AudioComponentValidationResult result, IntPtr dictionary); + + static unsafe readonly TrampolineCallback static_action = TrampolineAction; + + [MonoPInvokeCallback (typeof (TrampolineCallback))] + static void TrampolineAction (IntPtr blockPtr, AudioComponentValidationResult result, IntPtr dictionary) + { + var del = BlockLiteral.GetTarget> (blockPtr); + if (del is not null) + del (result, Runtime.GetNSObject(dictionary)); + } + +#if NET + [SupportedOSPlatform ("macos13.0")] + [SupportedOSPlatform ("ios16.0")] + [SupportedOSPlatform ("maccatalyst16.0")] + [UnsupportedOSPlatform ("tvos")] +#else + [NoWatch] + [NoTV] + [Mac (13,0)] + [iOS (16,0)] +#endif + [DllImport (Constants.AudioUnitLibrary)] + static extern int AudioComponentValidateWithResults (IntPtr /* AudioComponent* */ inComponent, IntPtr /* CFDictionaryRef* */ inValidationParameters, ref BlockLiteral inCompletionHandler); + +#if NET + [SupportedOSPlatform ("macos13.0")] + [SupportedOSPlatform ("ios16.0")] + [SupportedOSPlatform ("maccatalyst16.0")] + [UnsupportedOSPlatform ("tvos")] +#else + [NoWatch] + [NoTV] + [Mac (13,0)] + [iOS (16,0)] +#endif + [BindingImpl (BindingImplOptions.Optimizable)] + public void ValidateAsync (NSDictionary? validationParameters, + Action onCompletion, out int resultCode) { + if (onCompletion is null) + ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (onCompletion)); + + var block_handler= new BlockLiteral (); + block_handler.SetupBlockUnsafe (static_action, onCompletion); + try { + resultCode = AudioComponentValidateWithResults (GetCheckedHandle (), validationParameters.GetHandle (), ref block_handler); + } finally { + block_handler.CleanupBlock (); + } + } + +#if NET + [SupportedOSPlatform ("macos13.0")] + [SupportedOSPlatform ("ios16.0")] + [SupportedOSPlatform ("maccatalyst16.0")] + [UnsupportedOSPlatform ("tvos")] +#else + [NoWatch] + [NoTV] + [Mac (13,0)] + [iOS (16,0)] +#endif + public void ValidateAsync (NSDictionary? validationParameters, + Action onCompletion) => ValidateAsync (validationParameters, onCompletion, out var _); + +#if NET + [SupportedOSPlatform ("macos13.0")] + [SupportedOSPlatform ("ios16.0")] + [SupportedOSPlatform ("maccatalyst16.0")] + [UnsupportedOSPlatform ("tvos")] +#else + [NoWatch] + [NoTV] + [Mac (13,0)] + [iOS (16,0)] +#endif + public void ValidateAsync (Action onCompletion) => ValidateAsync (null, onCompletion, out var _); + #if NET [SupportedOSPlatform ("macos10.13")] [SupportedOSPlatform ("ios11.0")] @@ -608,7 +783,8 @@ public AudioComponentInfo[]? ComponentList { } } } -#endif + +#endif // IOS || MONOMAC #endif // !COREBUILD } diff --git a/tests/monotouch-test/AudioToolbox/AudioComponentTest.cs b/tests/monotouch-test/AudioToolbox/AudioComponentTest.cs index 4df2c51263e2..ee331a408ca9 100644 --- a/tests/monotouch-test/AudioToolbox/AudioComponentTest.cs +++ b/tests/monotouch-test/AudioToolbox/AudioComponentTest.cs @@ -5,6 +5,7 @@ using System.Drawing; using System.IO; using System.Collections.Generic; +using System.Threading; using Foundation; using AudioToolbox; using AudioUnit; @@ -117,6 +118,80 @@ public void TestResourceUsageInfoMachLookUpGlobalName () resources.MachLookUpGlobalName = null; Assert.IsNull (resources.MachLookUpGlobalName, "Value was no set to null."); } + + [Test] + public void TestConfigurationInfo () + { + TestRuntime.AssertXcodeVersion (14, 0); + var resources = new ResourceUsageInfo (); + resources.IOKitUserClient = new string[] { "CustomUserClient1" }; + resources.MachLookUpGlobalName = new string[] { "MachServiceName1" }; + resources.NetworkClient = false; + resources.TemporaryExceptionReadWrite = false; + + var componentInfo = new AudioComponentInfo (); + componentInfo.Type = AudioTypeOutput.Generic.ToString (); + componentInfo.Subtype = "XMPL"; + componentInfo.Name = "XMPL"; + componentInfo.Version = 1; + componentInfo.ResourceUsage = resources; + using var component = AudioComponent.FindComponent (AudioTypeOutput.Generic); + Assert.IsNotNull (component); + // assert the property and break + var configInfo = component.GetConfigurationInfo (); + Assert.IsNotNull (configInfo); + } + + [Test] + public void TestValidation () + { + TestRuntime.AssertXcodeVersion (14, 0); + var resources = new ResourceUsageInfo (); + resources.IOKitUserClient = new string[] { "CustomUserClient1" }; + resources.MachLookUpGlobalName = new string[] { "MachServiceName1" }; + resources.NetworkClient = false; + resources.TemporaryExceptionReadWrite = false; + + var componentInfo = new AudioComponentInfo (); + componentInfo.Type = AudioTypeOutput.Generic.ToString (); + componentInfo.Subtype = "XMPL"; + componentInfo.Name = "XMPL"; + componentInfo.Version = 1; + componentInfo.ResourceUsage = resources; + using var component = AudioComponent.FindComponent (AudioTypeOutput.Generic); + Assert.IsNotNull (component); + // validate and break + var validation = component.Validate(null); + Assert.Contains (validation, + new List () {AudioComponentValidationResult.Unknown, AudioComponentValidationResult.Passed}, "validation"); + } + + [Test] + public void TestValidationAsync () + { + TestRuntime.AssertXcodeVersion (14, 0); + var resources = new ResourceUsageInfo (); + resources.IOKitUserClient = new string[] { "CustomUserClient1" }; + resources.MachLookUpGlobalName = new string[] { "MachServiceName1" }; + resources.NetworkClient = false; + resources.TemporaryExceptionReadWrite = false; + + var componentInfo = new AudioComponentInfo (); + componentInfo.Type = AudioTypeOutput.Generic.ToString (); + componentInfo.Subtype = "XMPL"; + componentInfo.Name = "XMPL"; + componentInfo.Version = 1; + componentInfo.ResourceUsage = resources; + using var component = AudioComponent.FindComponent (AudioTypeOutput.Generic); + Assert.IsNotNull (component); + + var cbEvent = new AutoResetEvent(false); + Action cb = (AudioComponentValidationResult _, NSDictionary? _) => { + cbEvent.Set (); + }; + component.ValidateAsync(cb); + Assert.True (cbEvent.WaitOne (20000), "Cb was not called."); + } } } diff --git a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-AudioToolbox.todo b/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-AudioToolbox.todo deleted file mode 100644 index 920d7d9936a1..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-AudioToolbox.todo +++ /dev/null @@ -1,21 +0,0 @@ -!missing-enum! AudioUnitEventType not bound -!missing-pinvoke! AudioComponentCopyConfigurationInfo is not bound -!missing-pinvoke! AudioComponentValidate is not bound -!missing-pinvoke! AUEventListenerAddEventType is not bound -!missing-pinvoke! AUEventListenerCreate is not bound -!missing-pinvoke! AUEventListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUEventListenerNotify is not bound -!missing-pinvoke! AUEventListenerRemoveEventType is not bound -!missing-pinvoke! AUListenerAddParameter is not bound -!missing-pinvoke! AUListenerCreate is not bound -!missing-pinvoke! AUListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUListenerDispose is not bound -!missing-pinvoke! AUListenerRemoveParameter is not bound -!missing-pinvoke! AUParameterFormatValue is not bound -!missing-pinvoke! AUParameterListenerNotify is not bound -!missing-pinvoke! AUParameterSet is not bound -!missing-pinvoke! AUParameterValueFromLinear is not bound -!missing-pinvoke! AUParameterValueToLinear is not bound -!missing-protocol! AUMessageChannel not bound -!missing-selector! AUAudioUnit::messageChannelFor: not bound -!missing-selector! AUAudioUnitV2Bridge::audioUnit not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/common-AudioToolbox.ignore b/tests/xtro-sharpie/api-annotations-dotnet/common-AudioToolbox.ignore index a32d157be969..19b6c70870d0 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/common-AudioToolbox.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/common-AudioToolbox.ignore @@ -52,6 +52,8 @@ !missing-selector! AUAudioUnit::scheduleMIDIEventBlock not bound !missing-selector! AUAudioUnit::setMusicalContextBlock: not bound !missing-selector! AUAudioUnit::tokenByAddingRenderObserver: not bound +!missing-selector! AUAudioUnit::messageChannelFor: not bound +!missing-selector! AUAudioUnitV2Bridge::audioUnit not bound !missing-type! AUAudioUnitV2Bridge not bound !missing-pinvoke! AudioCodecAppendInputBufferList is not bound !missing-pinvoke! AudioCodecAppendInputData is not bound @@ -77,3 +79,22 @@ !missing-selector! AUAudioUnit::AudioUnitMIDIProtocol not bound !missing-selector! AUAudioUnit::hostMIDIProtocol not bound !missing-selector! AUAudioUnit::setHostMIDIProtocol: not bound + +# ignored in the past on macOS now ignored in every platform. +!missing-pinvoke! AUListenerAddParameter is not bound +!missing-pinvoke! AUListenerRemoveParameter is not bound +!missing-pinvoke! AUListenerCreate is not bound +!missing-pinvoke! AUListenerCreateWithDispatchQueue is not bound +!missing-pinvoke! AUListenerDispose is not bound +!missing-pinvoke! AUEventListenerAddEventType is not bound +!missing-pinvoke! AUEventListenerCreate is not bound +!missing-pinvoke! AUEventListenerCreateWithDispatchQueue is not bound +!missing-pinvoke! AUEventListenerNotify is not bound +!missing-pinvoke! AUEventListenerRemoveEventType is not bound +!missing-pinvoke! AUParameterFormatValue is not bound +!missing-pinvoke! AUParameterListenerNotify is not bound +!missing-pinvoke! AUParameterSet is not bound +!missing-pinvoke! AUParameterValueFromLinear is not bound +!missing-pinvoke! AUParameterValueToLinear is not bound + +!missing-protocol! AUMessageChannel not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AudioToolbox.todo b/tests/xtro-sharpie/api-annotations-dotnet/iOS-AudioToolbox.todo deleted file mode 100644 index de547e44b300..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/iOS-AudioToolbox.todo +++ /dev/null @@ -1,23 +0,0 @@ -!missing-enum! AudioUnitEventType not bound -!missing-pinvoke! AudioComponentCopyConfigurationInfo is not bound -!missing-pinvoke! AudioComponentValidate is not bound -!missing-pinvoke! AudioComponentValidateWithResults is not bound -!missing-pinvoke! AUEventListenerAddEventType is not bound -!missing-pinvoke! AUEventListenerCreate is not bound -!missing-pinvoke! AUEventListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUEventListenerNotify is not bound -!missing-pinvoke! AUEventListenerRemoveEventType is not bound -!missing-pinvoke! AUListenerAddParameter is not bound -!missing-pinvoke! AUListenerCreate is not bound -!missing-pinvoke! AUListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUListenerDispose is not bound -!missing-pinvoke! AUListenerRemoveParameter is not bound -!missing-pinvoke! AUParameterFormatValue is not bound -!missing-pinvoke! AUParameterListenerNotify is not bound -!missing-pinvoke! AUParameterSet is not bound -!missing-pinvoke! AUParameterValueFromLinear is not bound -!missing-pinvoke! AUParameterValueToLinear is not bound -!missing-protocol! AUMessageChannel not bound -!missing-selector! AUAudioUnit::messageChannelFor: not bound -!missing-selector! AUAudioUnitV2Bridge::audioUnit not bound -!missing-enum! AUSpatialMixerPersonalizedHRTFMode not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AudioToolbox.ignore b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AudioToolbox.ignore index 475feb408baa..2f91f974f15d 100644 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AudioToolbox.ignore +++ b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AudioToolbox.ignore @@ -1,12 +1,9 @@ -!missing-enum! AudioUnitEventType not bound !missing-enum! AUParameterMIDIMappingFlags not bound !missing-enum! CAClockMessage not bound !missing-enum! CAClockPropertyID not bound !missing-enum! CAClockSyncMode not bound !missing-enum! CAClockTimebase not bound !missing-enum! CAClockTimeFormat not bound -!missing-pinvoke! AudioComponentCopyConfigurationInfo is not bound -!missing-pinvoke! AudioComponentValidate is not bound !missing-pinvoke! AudioFileComponentCloseFile is not bound !missing-pinvoke! AudioFileComponentCountUserData is not bound !missing-pinvoke! AudioFileComponentCreateURL is not bound @@ -30,21 +27,6 @@ !missing-pinvoke! AudioFileComponentSetUserData is not bound !missing-pinvoke! AudioFileComponentWriteBytes is not bound !missing-pinvoke! AudioFileComponentWritePackets is not bound -!missing-pinvoke! AUEventListenerAddEventType is not bound -!missing-pinvoke! AUEventListenerCreate is not bound -!missing-pinvoke! AUEventListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUEventListenerNotify is not bound -!missing-pinvoke! AUEventListenerRemoveEventType is not bound -!missing-pinvoke! AUListenerAddParameter is not bound -!missing-pinvoke! AUListenerCreate is not bound -!missing-pinvoke! AUListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUListenerDispose is not bound -!missing-pinvoke! AUListenerRemoveParameter is not bound -!missing-pinvoke! AUParameterFormatValue is not bound -!missing-pinvoke! AUParameterListenerNotify is not bound -!missing-pinvoke! AUParameterSet is not bound -!missing-pinvoke! AUParameterValueFromLinear is not bound -!missing-pinvoke! AUParameterValueToLinear is not bound !missing-pinvoke! CAClockAddListener is not bound !missing-pinvoke! CAClockArm is not bound !missing-pinvoke! CAClockBarBeatTimeToBeats is not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AudioToolbox.todo b/tests/xtro-sharpie/api-annotations-dotnet/macOS-AudioToolbox.todo deleted file mode 100644 index 7b78f93d9761..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/macOS-AudioToolbox.todo +++ /dev/null @@ -1,5 +0,0 @@ -!missing-protocol! AUMessageChannel not bound -!missing-selector! AUAudioUnit::messageChannelFor: not bound -!missing-selector! AUAudioUnitV2Bridge::audioUnit not bound -!missing-pinvoke! AudioComponentValidateWithResults is not bound -!missing-enum! AUSpatialMixerPersonalizedHRTFMode not bound diff --git a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AudioToolbox.todo b/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AudioToolbox.todo deleted file mode 100644 index 5e73f8c56782..000000000000 --- a/tests/xtro-sharpie/api-annotations-dotnet/tvOS-AudioToolbox.todo +++ /dev/null @@ -1,18 +0,0 @@ -!missing-enum! AudioUnitEventType not bound -!missing-pinvoke! AUEventListenerAddEventType is not bound -!missing-pinvoke! AUEventListenerCreate is not bound -!missing-pinvoke! AUEventListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUEventListenerNotify is not bound -!missing-pinvoke! AUEventListenerRemoveEventType is not bound -!missing-pinvoke! AUListenerAddParameter is not bound -!missing-pinvoke! AUListenerCreate is not bound -!missing-pinvoke! AUListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUListenerDispose is not bound -!missing-pinvoke! AUListenerRemoveParameter is not bound -!missing-pinvoke! AUParameterFormatValue is not bound -!missing-pinvoke! AUParameterListenerNotify is not bound -!missing-pinvoke! AUParameterSet is not bound -!missing-pinvoke! AUParameterValueFromLinear is not bound -!missing-pinvoke! AUParameterValueToLinear is not bound -!missing-selector! AUAudioUnitV2Bridge::audioUnit not bound -!missing-enum! AUSpatialMixerPersonalizedHRTFMode not bound diff --git a/tests/xtro-sharpie/common-AudioToolbox.ignore b/tests/xtro-sharpie/common-AudioToolbox.ignore index a32d157be969..822ae6deccfa 100644 --- a/tests/xtro-sharpie/common-AudioToolbox.ignore +++ b/tests/xtro-sharpie/common-AudioToolbox.ignore @@ -52,6 +52,8 @@ !missing-selector! AUAudioUnit::scheduleMIDIEventBlock not bound !missing-selector! AUAudioUnit::setMusicalContextBlock: not bound !missing-selector! AUAudioUnit::tokenByAddingRenderObserver: not bound +!missing-selector! AUAudioUnit::messageChannelFor: not bound +!missing-selector! AUAudioUnitV2Bridge::audioUnit not bound !missing-type! AUAudioUnitV2Bridge not bound !missing-pinvoke! AudioCodecAppendInputBufferList is not bound !missing-pinvoke! AudioCodecAppendInputData is not bound @@ -77,3 +79,21 @@ !missing-selector! AUAudioUnit::AudioUnitMIDIProtocol not bound !missing-selector! AUAudioUnit::hostMIDIProtocol not bound !missing-selector! AUAudioUnit::setHostMIDIProtocol: not bound + +# ignored in the past on macOS now ignored in every platform. +!missing-pinvoke! AUListenerAddParameter is not bound +!missing-pinvoke! AUListenerCreate is not bound +!missing-pinvoke! AUListenerCreateWithDispatchQueue is not bound +!missing-pinvoke! AUListenerDispose is not bound +!missing-pinvoke! AUEventListenerAddEventType is not bound +!missing-pinvoke! AUEventListenerCreate is not bound +!missing-pinvoke! AUEventListenerCreateWithDispatchQueue is not bound +!missing-pinvoke! AUEventListenerNotify is not bound +!missing-pinvoke! AUEventListenerRemoveEventType is not bound +!missing-pinvoke! AUParameterFormatValue is not bound +!missing-pinvoke! AUParameterListenerNotify is not bound +!missing-pinvoke! AUParameterSet is not bound +!missing-pinvoke! AUParameterValueFromLinear is not bound +!missing-pinvoke! AUParameterValueToLinear is not bound + +!missing-protocol! AUMessageChannel not bound diff --git a/tests/xtro-sharpie/iOS-AudioToolbox.todo b/tests/xtro-sharpie/iOS-AudioToolbox.todo deleted file mode 100644 index de547e44b300..000000000000 --- a/tests/xtro-sharpie/iOS-AudioToolbox.todo +++ /dev/null @@ -1,23 +0,0 @@ -!missing-enum! AudioUnitEventType not bound -!missing-pinvoke! AudioComponentCopyConfigurationInfo is not bound -!missing-pinvoke! AudioComponentValidate is not bound -!missing-pinvoke! AudioComponentValidateWithResults is not bound -!missing-pinvoke! AUEventListenerAddEventType is not bound -!missing-pinvoke! AUEventListenerCreate is not bound -!missing-pinvoke! AUEventListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUEventListenerNotify is not bound -!missing-pinvoke! AUEventListenerRemoveEventType is not bound -!missing-pinvoke! AUListenerAddParameter is not bound -!missing-pinvoke! AUListenerCreate is not bound -!missing-pinvoke! AUListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUListenerDispose is not bound -!missing-pinvoke! AUListenerRemoveParameter is not bound -!missing-pinvoke! AUParameterFormatValue is not bound -!missing-pinvoke! AUParameterListenerNotify is not bound -!missing-pinvoke! AUParameterSet is not bound -!missing-pinvoke! AUParameterValueFromLinear is not bound -!missing-pinvoke! AUParameterValueToLinear is not bound -!missing-protocol! AUMessageChannel not bound -!missing-selector! AUAudioUnit::messageChannelFor: not bound -!missing-selector! AUAudioUnitV2Bridge::audioUnit not bound -!missing-enum! AUSpatialMixerPersonalizedHRTFMode not bound diff --git a/tests/xtro-sharpie/macOS-AudioToolbox.ignore b/tests/xtro-sharpie/macOS-AudioToolbox.ignore index 475feb408baa..cfd489962bb3 100644 --- a/tests/xtro-sharpie/macOS-AudioToolbox.ignore +++ b/tests/xtro-sharpie/macOS-AudioToolbox.ignore @@ -1,12 +1,9 @@ -!missing-enum! AudioUnitEventType not bound !missing-enum! AUParameterMIDIMappingFlags not bound !missing-enum! CAClockMessage not bound !missing-enum! CAClockPropertyID not bound !missing-enum! CAClockSyncMode not bound !missing-enum! CAClockTimebase not bound !missing-enum! CAClockTimeFormat not bound -!missing-pinvoke! AudioComponentCopyConfigurationInfo is not bound -!missing-pinvoke! AudioComponentValidate is not bound !missing-pinvoke! AudioFileComponentCloseFile is not bound !missing-pinvoke! AudioFileComponentCountUserData is not bound !missing-pinvoke! AudioFileComponentCreateURL is not bound @@ -30,21 +27,7 @@ !missing-pinvoke! AudioFileComponentSetUserData is not bound !missing-pinvoke! AudioFileComponentWriteBytes is not bound !missing-pinvoke! AudioFileComponentWritePackets is not bound -!missing-pinvoke! AUEventListenerAddEventType is not bound -!missing-pinvoke! AUEventListenerCreate is not bound -!missing-pinvoke! AUEventListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUEventListenerNotify is not bound -!missing-pinvoke! AUEventListenerRemoveEventType is not bound -!missing-pinvoke! AUListenerAddParameter is not bound -!missing-pinvoke! AUListenerCreate is not bound -!missing-pinvoke! AUListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUListenerDispose is not bound !missing-pinvoke! AUListenerRemoveParameter is not bound -!missing-pinvoke! AUParameterFormatValue is not bound -!missing-pinvoke! AUParameterListenerNotify is not bound -!missing-pinvoke! AUParameterSet is not bound -!missing-pinvoke! AUParameterValueFromLinear is not bound -!missing-pinvoke! AUParameterValueToLinear is not bound !missing-pinvoke! CAClockAddListener is not bound !missing-pinvoke! CAClockArm is not bound !missing-pinvoke! CAClockBarBeatTimeToBeats is not bound diff --git a/tests/xtro-sharpie/macOS-AudioToolbox.todo b/tests/xtro-sharpie/macOS-AudioToolbox.todo deleted file mode 100644 index 7b78f93d9761..000000000000 --- a/tests/xtro-sharpie/macOS-AudioToolbox.todo +++ /dev/null @@ -1,5 +0,0 @@ -!missing-protocol! AUMessageChannel not bound -!missing-selector! AUAudioUnit::messageChannelFor: not bound -!missing-selector! AUAudioUnitV2Bridge::audioUnit not bound -!missing-pinvoke! AudioComponentValidateWithResults is not bound -!missing-enum! AUSpatialMixerPersonalizedHRTFMode not bound diff --git a/tests/xtro-sharpie/tvOS-AudioToolbox.todo b/tests/xtro-sharpie/tvOS-AudioToolbox.todo deleted file mode 100644 index 5e73f8c56782..000000000000 --- a/tests/xtro-sharpie/tvOS-AudioToolbox.todo +++ /dev/null @@ -1,18 +0,0 @@ -!missing-enum! AudioUnitEventType not bound -!missing-pinvoke! AUEventListenerAddEventType is not bound -!missing-pinvoke! AUEventListenerCreate is not bound -!missing-pinvoke! AUEventListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUEventListenerNotify is not bound -!missing-pinvoke! AUEventListenerRemoveEventType is not bound -!missing-pinvoke! AUListenerAddParameter is not bound -!missing-pinvoke! AUListenerCreate is not bound -!missing-pinvoke! AUListenerCreateWithDispatchQueue is not bound -!missing-pinvoke! AUListenerDispose is not bound -!missing-pinvoke! AUListenerRemoveParameter is not bound -!missing-pinvoke! AUParameterFormatValue is not bound -!missing-pinvoke! AUParameterListenerNotify is not bound -!missing-pinvoke! AUParameterSet is not bound -!missing-pinvoke! AUParameterValueFromLinear is not bound -!missing-pinvoke! AUParameterValueToLinear is not bound -!missing-selector! AUAudioUnitV2Bridge::audioUnit not bound -!missing-enum! AUSpatialMixerPersonalizedHRTFMode not bound