How to get an AudioUnit property value in Xamarin.iOS -


i'm working on audio debug feature , trying audiounit.audiounitpropertyidtype.latency property value of audio unit using xamarin.ios. unfortunately don't see related method retrieve value property value audiounit.getparameter.

though can see , set properties using audiounit.setparameter method.

did miss something?

not answer audiounit has private audiounitsetproperty method exposed setaudioformat, setcurrentdevice , number of other methods, not latency. looks wasn't implemented xamarin. can use reflection ;)

public void setaudioformat(audiostreambasicdescription audioformat, audiounitscopetype scope, uint audiounitelement = 0u) {   int k = audiounit.audiounitsetproperty(this.handle, audiounitpropertyidtype.streamformat, scope, audiounitelement, ref audioformat, (uint) marshal.sizeof<audiostreambasicdescription>(audioformat));   if (k != 0)     throw new audiounitexception(k); } 

Comments

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -