TimePitchAU error codes
TimePitchAU error codes
- Subject: TimePitchAU error codes
- From: Robert Carroll <email@hidden>
- Date: Thu, 05 Dec 2013 19:24:09 -0500
I'm still struggling to get the TimePitchAU to work in my AUGraph.
Setting the stream format through the following OSStatus errors: -10877 (input stream) & -10868 (output stream).
both of these log as 'null' with the following code:
- (void) printErrorMessage: (NSString *) errorString withStatus: (OSStatus) result {
char resultString[5];
UInt32 swappedResult = CFSwapInt32HostToBig (result);
bcopy (&swappedResult, resultString, 4);
resultString[4] = '\0';
NSString *myNSString = [NSString stringWithUTF8String:resultString];
NSLog (
@"*** %@ error: %@",
errorString,
myNSString
);
}
There must be some way to get a more useful result from the error codes?
thanks,
rob
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Coreaudio-api mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden