Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OSStatus error -50?

I just received a result code(-50) returned from ExtAudioFileWrite().

And I didnt't find the information about this result code in "Extended Audio File Services Reference".

Please help me to resolve it.

Thanks.

like image 387
Solskjaer Avatar asked Oct 24 '11 04:10

Solskjaer


1 Answers

This error code is declared in MacErrors.h of the CarbonCore framework. -50 is paramErr. IOW, one of your parameters is invalid. So you will need to verify your parameters, buffer sizes, arguments that you pass and so on to locate the parameter which has been flagged.

like image 100
justin Avatar answered Sep 25 '22 09:09

justin