I'm working on a VoIP app, when dialling a number, I use:
status = pjsua_call_make_call(acc_id, &pj_uri, 0, NULL, &msg_data, call_id);
if (status != PJ_SUCCESS) {
pjsua_perror(THIS__FILE, "Error making call, going to restart handler", status);
[SipHandlerListener restart:YES];
} else {
// continue with actions
}
}
for a long time, my decoded error message for non-successful status is "Default status message" until just now when I traced status value it gave me 450851. I then searched for the error code and found:
Unable to open sound device: Core audio error [status=450851]
I saw many people post this log message in other places, but what exactly is this error about and anyone has a fix to this error?
Note that I have no sound problem with other situations, e.g. receiving incoming call rings, answering a call etc.