|
|
|
@ -53,7 +53,7 @@
|
|
|
|
|
|
|
|
|
|
#define MAX_CALLS 10
|
|
|
|
|
|
|
|
|
|
#define frame_size (CallContrl.audio_bit_rate * CallContrl.audio_frame_duration / 1000)
|
|
|
|
|
#define frame_size (CallContrl.audio_sample_rate * CallContrl.audio_frame_duration / 1000)
|
|
|
|
|
|
|
|
|
|
static int set_call(Call* call, bool start)
|
|
|
|
|
{
|
|
|
|
@ -63,12 +63,12 @@ static int set_call(Call* call, bool start)
|
|
|
|
|
if ( start ) {
|
|
|
|
|
call->ttas = true;
|
|
|
|
|
|
|
|
|
|
if (pthread_mutex_init(&call->mutex, NULL) != 0)
|
|
|
|
|
if ( pthread_mutex_init(&call->mutex, NULL) != 0 )
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
call->ttid = 0;
|
|
|
|
|
if (pthread_mutex_destroy(&call->mutex) != 0)
|
|
|
|
|
if ( pthread_mutex_destroy(&call->mutex) != 0 )
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -87,12 +87,10 @@ typedef struct CallControl {
|
|
|
|
|
|
|
|
|
|
bool audio_enabled;
|
|
|
|
|
bool video_enabled;
|
|
|
|
|
|
|
|
|
|
uint32_t audio_bit_rate;
|
|
|
|
|
uint32_t video_bit_rate;
|
|
|
|
|
|
|
|
|
|
uint32_t audio_sample_rate;
|
|
|
|
|
|
|
|
|
|
uint32_t video_sample_rate;
|
|
|
|
|
int32_t audio_frame_duration;
|
|
|
|
|
int32_t video_frame_duration;
|
|
|
|
|
|
|
|
|
@ -102,16 +100,19 @@ typedef struct CallControl {
|
|
|
|
|
|
|
|
|
|
CallControl CallContrl;
|
|
|
|
|
|
|
|
|
|
void call_cb(ToxAV *av, uint32_t friend_number, bool audio_enabled, bool video_enabled, void *user_data);
|
|
|
|
|
void callstate_cb(ToxAV *av, uint32_t friend_number, uint32_t state, void *user_data);
|
|
|
|
|
void receive_audio_frame_cb(ToxAV *av, uint32_t friend_number, int16_t const *pcm, size_t sample_count, uint8_t channels, uint32_t sampling_rate, void *user_data);
|
|
|
|
|
void audio_bit_rate_status_cb(ToxAV *av, uint32_t friend_number, bool stable, uint32_t bit_rate, void *user_data);
|
|
|
|
|
void receive_video_frame_cb(ToxAV *av, uint32_t friend_number,
|
|
|
|
|
void call_cb( ToxAV *av, uint32_t friend_number, bool audio_enabled, bool video_enabled, void *user_data );
|
|
|
|
|
void callstate_cb( ToxAV *av, uint32_t friend_number, uint32_t state, void *user_data );
|
|
|
|
|
void receive_audio_frame_cb( ToxAV *av, uint32_t friend_number,
|
|
|
|
|
int16_t const *pcm, size_t sample_count,
|
|
|
|
|
uint8_t channels, uint32_t sampling_rate, void *user_data );
|
|
|
|
|
void audio_bit_rate_status_cb( ToxAV *av, uint32_t friend_number,
|
|
|
|
|
bool stable, uint32_t bit_rate, void *user_data );
|
|
|
|
|
void receive_video_frame_cb( ToxAV *av, uint32_t friend_number,
|
|
|
|
|
uint16_t width, uint16_t height,
|
|
|
|
|
uint8_t const *y, uint8_t const *u, uint8_t const *v, uint8_t const *a,
|
|
|
|
|
int32_t ystride, int32_t ustride, int32_t vstride, int32_t astride,
|
|
|
|
|
void *user_data);
|
|
|
|
|
void video_bit_rate_status_cb(ToxAV *av, uint32_t friend_number,
|
|
|
|
|
void *user_data );
|
|
|
|
|
void video_bit_rate_status_cb( ToxAV *av, uint32_t friend_number,
|
|
|
|
|
bool stable, uint32_t bit_rate, void *user_data);
|
|
|
|
|
|
|
|
|
|
void callback_recv_invite ( void* av, uint32_t friend_number, void *arg );
|
|
|
|
@ -140,9 +141,13 @@ ToxAV *init_audio(ToxWindow *self, Tox *tox)
|
|
|
|
|
CallContrl.window = self;
|
|
|
|
|
|
|
|
|
|
CallContrl.audio_enabled = true;
|
|
|
|
|
CallContrl.video_enabled = false;
|
|
|
|
|
CallContrl.audio_bit_rate = 48;
|
|
|
|
|
CallContrl.video_bit_rate = 0;
|
|
|
|
|
CallContrl.audio_sample_rate = 48000;
|
|
|
|
|
CallContrl.video_sample_rate = 0;
|
|
|
|
|
CallContrl.audio_frame_duration = 10;
|
|
|
|
|
CallContrl.video_frame_duration = 0;
|
|
|
|
|
CallContrl.audio_channels = 1;
|
|
|
|
|
|
|
|
|
|
CallContrl.errors = ae_None;
|
|
|
|
@ -153,13 +158,6 @@ ToxAV *init_audio(ToxWindow *self, Tox *tox)
|
|
|
|
|
|
|
|
|
|
CallContrl.av = toxav_new(tox, &error);
|
|
|
|
|
|
|
|
|
|
if( error == TOXAV_ERR_NEW_OK) {
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "TOXAV_ERR_NEW_OK");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(tox == toxav_get_tox(CallContrl.av)) {
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Tox instance matches");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !CallContrl.av ) {
|
|
|
|
|
CallContrl.errors |= ae_StartingCoreAudio;
|
|
|
|
@ -173,24 +171,6 @@ ToxAV *init_audio(ToxWindow *self, Tox *tox)
|
|
|
|
|
return CallContrl.av = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*toxav_register_callstate_callback(CallContrl.av, callback_call_started, av_OnStart, self);
|
|
|
|
|
toxav_register_callstate_callback(CallContrl.av, callback_call_canceled, av_OnCancel, self);
|
|
|
|
|
toxav_register_callstate_callback(CallContrl.av, callback_call_rejected, av_OnReject, self);
|
|
|
|
|
toxav_register_callstate_callback(CallContrl.av, callback_call_ended, av_OnEnd, self);
|
|
|
|
|
toxav_register_callstate_callback(CallContrl.av, callback_recv_invite, av_OnInvite, self);
|
|
|
|
|
|
|
|
|
|
toxav_register_callstate_callback(CallContrl.av, callback_recv_ringing, av_OnRinging, self);
|
|
|
|
|
toxav_register_callstate_callback(CallContrl.av, callback_recv_starting, av_OnStart, self);
|
|
|
|
|
toxav_register_callstate_callback(CallContrl.av, callback_recv_ending, av_OnEnd, self);
|
|
|
|
|
|
|
|
|
|
toxav_register_callstate_callback(CallContrl.av, callback_requ_timeout, av_OnRequestTimeout, self);
|
|
|
|
|
toxav_register_callstate_callback(CallContrl.av, callback_peer_timeout, av_OnPeerTimeout, self);
|
|
|
|
|
//toxav_register_callstate_callback(CallContrl.av, callback_media_change, av_OnMediaChange, self);
|
|
|
|
|
|
|
|
|
|
toxav_register_audio_callback(CallContrl.av, write_device_callback, NULL);
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
toxav_callback_call(CallContrl.av, call_cb, &CallContrl);
|
|
|
|
|
toxav_callback_call_state(CallContrl.av, callstate_cb, &CallContrl);
|
|
|
|
|
toxav_callback_audio_receive_frame(CallContrl.av, receive_audio_frame_cb, &CallContrl);
|
|
|
|
@ -215,13 +195,15 @@ void terminate_audio()
|
|
|
|
|
|
|
|
|
|
void read_device_callback (const int16_t* captured, uint32_t size, void* data)
|
|
|
|
|
{
|
|
|
|
|
TOXAV_ERR_SEND_FRAME error;
|
|
|
|
|
int32_t friend_number = *((int32_t*)data); /* TODO: Or pass an array of call_idx's */
|
|
|
|
|
int64_t sample_count = CallContrl.audio_sample_rate * CallContrl.audio_frame_duration / 1000;
|
|
|
|
|
|
|
|
|
|
//uint8_t encoded_payload[RTP_PAYLOAD_SIZE];
|
|
|
|
|
//int32_t payload_size = toxav_prepare_audio_frame(CallContrl.av, friend_number, encoded_payload, RTP_PAYLOAD_SIZE, captured, size);
|
|
|
|
|
//if ( payload_size <= 0 || toxav_send_audio(CallContrl.av, friend_number, encoded_payload, payload_size) < 0 ) {
|
|
|
|
|
// /*fprintf(stderr, "Could not encode audio packet\n");*/
|
|
|
|
|
//}
|
|
|
|
|
if ( sample_count <= 0 || toxav_audio_send_frame(CallContrl.av, friend_number,
|
|
|
|
|
captured, sample_count,
|
|
|
|
|
CallContrl.audio_channels,
|
|
|
|
|
CallContrl.audio_sample_rate, &error) == false )
|
|
|
|
|
{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void write_device_callback(void *agent, int32_t friend_number, const int16_t* PCM, uint16_t size, void* arg)
|
|
|
|
@ -229,48 +211,29 @@ void write_device_callback(void *agent, int32_t friend_number, const int16_t* PC
|
|
|
|
|
(void)arg;
|
|
|
|
|
(void)agent;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (friend_number >= 0 && CallContrl.calls[friend_number].ttas) {
|
|
|
|
|
//ToxAvCSettings csettings = CallContrl.cs;
|
|
|
|
|
//toxav_get_peer_csettings(CallContrl.av, friend_number, 0, &csettings);
|
|
|
|
|
if (friend_number >= 0 && CallContrl.calls[friend_number].ttas)
|
|
|
|
|
write_out(CallContrl.calls[friend_number].out_idx, PCM, size, CallContrl.audio_channels);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int start_transmission(ToxWindow *self, Call *call)
|
|
|
|
|
{
|
|
|
|
|
if ( !self || !CallContrl.av || self->num == -1 ) {
|
|
|
|
|
if ( !self || !CallContrl.av) {
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Could not prepare transmission");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Don't provide support for video */
|
|
|
|
|
/*
|
|
|
|
|
if ( 0 != toxav_prepare_transmission(CallContrl.av, self->num, 0) ) {
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Could not prepare transmission");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !toxav_capability_supported(CallContrl.av, self->num, av_AudioDecoding) ||
|
|
|
|
|
!toxav_capability_supported(CallContrl.av, self->num, av_AudioEncoding) )
|
|
|
|
|
return -1;
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (set_call(call, true) == -1)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
//ToxAvCSettings csettings;
|
|
|
|
|
//toxav_get_peer_csettings(CallContrl.av, self->call_idx, 0, &csettings);
|
|
|
|
|
DeviceError error = open_primary_device(input, &call->in_idx, CallContrl.audio_sample_rate, CallContrl.audio_frame_duration, CallContrl.audio_channels);
|
|
|
|
|
|
|
|
|
|
DeviceError test = open_primary_device(input, &call->in_idx, CallContrl.audio_bit_rate, CallContrl.audio_frame_duration, CallContrl.audio_channels);
|
|
|
|
|
if ( error == de_FailedStart)
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to start input device");
|
|
|
|
|
|
|
|
|
|
if ( test == de_FailedStart)
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed Start");
|
|
|
|
|
if ( error == de_InternalError )
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Internal error with opening input device");
|
|
|
|
|
|
|
|
|
|
if ( test == de_InternalError )
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Internal Error");
|
|
|
|
|
|
|
|
|
|
if ( test != de_None )
|
|
|
|
|
if ( error != de_None )
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to open input device!");
|
|
|
|
|
|
|
|
|
|
if ( register_device_callback(self->num, call->in_idx,
|
|
|
|
@ -279,7 +242,7 @@ int start_transmission(ToxWindow *self, Call *call)
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to register input handler!");
|
|
|
|
|
|
|
|
|
|
if ( open_primary_device(output, &call->out_idx,
|
|
|
|
|
CallContrl.audio_bit_rate, CallContrl.audio_frame_duration, CallContrl.audio_channels) != de_None ) {
|
|
|
|
|
CallContrl.audio_sample_rate, CallContrl.audio_frame_duration, CallContrl.audio_channels) != de_None ) {
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to open output device!");
|
|
|
|
|
call->has_output = 0;
|
|
|
|
|
}
|
|
|
|
@ -290,10 +253,11 @@ int start_transmission(ToxWindow *self, Call *call)
|
|
|
|
|
int stop_transmission(Call *call, int32_t friend_number)
|
|
|
|
|
{
|
|
|
|
|
if ( call->ttas ) {
|
|
|
|
|
TOXAV_ERR_CALL_CONTROL error;
|
|
|
|
|
bool call_running = toxav_call_control(CallContrl.av, friend_number, TOXAV_CALL_CONTROL_CANCEL, &error);
|
|
|
|
|
//toxav_kill_transmission(CallContrl.av, friend_number);
|
|
|
|
|
if(error == TOXAV_ERR_CALL_CONTROL_OK) {
|
|
|
|
|
TOXAV_ERR_CALL_CONTROL error = TOXAV_ERR_CALL_CONTROL_OK;
|
|
|
|
|
if ( CallContrl.call_state != TOXAV_FRIEND_CALL_STATE_FINISHED )
|
|
|
|
|
toxav_call_control(CallContrl.av, friend_number, TOXAV_CALL_CONTROL_CANCEL, &error);
|
|
|
|
|
|
|
|
|
|
if ( error == TOXAV_ERR_CALL_CONTROL_OK ) {
|
|
|
|
|
call->ttas = false;
|
|
|
|
|
|
|
|
|
|
if ( call->in_idx != -1 )
|
|
|
|
@ -331,12 +295,11 @@ void call_cb(ToxAV *av, uint32_t friend_number, bool audio_enabled, bool video_e
|
|
|
|
|
TOXAV_ERR_ANSWER error;
|
|
|
|
|
CallControl* cc = user_data;
|
|
|
|
|
ToxWindow* window = cc->window;
|
|
|
|
|
cc->audio_enabled = audio_enabled;
|
|
|
|
|
cc->video_enabled = video_enabled;
|
|
|
|
|
cc->pending_call = true;
|
|
|
|
|
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "Incoming call callback! Friend number: %d", friend_number);
|
|
|
|
|
|
|
|
|
|
callback_recv_invite(av, friend_number, user_data);
|
|
|
|
|
//toxav_answer(CallContrl.av, friend_number, 48, 0, &error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void callstate_cb(ToxAV *av, uint32_t friend_number, uint32_t state, void *user_data)
|
|
|
|
@ -345,54 +308,40 @@ void callstate_cb(ToxAV *av, uint32_t friend_number, uint32_t state, void *user_
|
|
|
|
|
ToxWindow* window = cc->window;
|
|
|
|
|
cc->call_state = state;
|
|
|
|
|
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "Callstate callback! Friend number: %d", friend_number);
|
|
|
|
|
|
|
|
|
|
switch(state) {
|
|
|
|
|
case TOXAV_CALL_STATE_ERROR:
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "TOXAV_CALL_STATE_ERROR");
|
|
|
|
|
break;
|
|
|
|
|
case TOXAV_CALL_STATE_FINISHED:
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "TOXAV_CALL_STATE_FINISHED");
|
|
|
|
|
|
|
|
|
|
if(CallContrl.pending_call) {
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "Pending Call Rejected");
|
|
|
|
|
CallContrl.pending_call = false;
|
|
|
|
|
callback_call_rejected(CallContrl.av, window->num, &CallContrl);
|
|
|
|
|
} else {
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "Existing Call Cancelled");
|
|
|
|
|
callback_call_canceled(CallContrl.av, window->num, &CallContrl);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case TOXAV_CALL_STATE_SENDING_A:
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "TOXAV_CALL_STATE_SENDING_A");
|
|
|
|
|
break;
|
|
|
|
|
case TOXAV_CALL_STATE_SENDING_V:
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "TOXAV_CALL_STATE_SENDING_V");
|
|
|
|
|
break;
|
|
|
|
|
case TOXAV_CALL_STATE_RECEIVING_A:
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "TOXAV_CALL_STATE_RECEIVING_A");
|
|
|
|
|
break;
|
|
|
|
|
case TOXAV_CALL_STATE_RECEIVING_V:
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "TOXAV_CALL_STATE_RECEIVING_V");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
if( state == TOXAV_FRIEND_CALL_STATE_FINISHED ) {
|
|
|
|
|
if ( CallContrl.pending_call ) {
|
|
|
|
|
CallContrl.pending_call = false;
|
|
|
|
|
callback_call_rejected(CallContrl.av, friend_number, &CallContrl);
|
|
|
|
|
} else {
|
|
|
|
|
callback_call_ended(CallContrl.av, friend_number, &CallContrl);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if( state == TOXAV_FRIEND_CALL_STATE_ERROR ) {
|
|
|
|
|
line_info_add(window, NULL, NULL, NULL, SYS_MSG, 0, 0, "ToxAV callstate error!");
|
|
|
|
|
CallContrl.pending_call = false;
|
|
|
|
|
callback_call_ended(CallContrl.av, friend_number, &CallContrl);
|
|
|
|
|
} else {
|
|
|
|
|
CallContrl.pending_call = false;
|
|
|
|
|
callback_call_started(CallContrl.av, friend_number, &CallContrl);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void receive_audio_frame_cb(ToxAV *av, uint32_t friend_number, int16_t const *pcm, size_t sample_count, uint8_t channels, uint32_t sampling_rate, void *user_data)
|
|
|
|
|
void receive_audio_frame_cb(ToxAV *av, uint32_t friend_number,
|
|
|
|
|
int16_t const *pcm, size_t sample_count,
|
|
|
|
|
uint8_t channels, uint32_t sampling_rate, void *user_data)
|
|
|
|
|
{
|
|
|
|
|
CallControl* cc = user_data;
|
|
|
|
|
|
|
|
|
|
write_device_callback(CallContrl.calls[friend_number].out_idx, friend_number, pcm, frame_size, cc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void audio_bit_rate_status_cb(ToxAV *av, uint32_t friend_number, bool stable, uint32_t bit_rate, void *user_data)
|
|
|
|
|
void audio_bit_rate_status_cb(ToxAV *av, uint32_t friend_number,
|
|
|
|
|
bool stable, uint32_t bit_rate, void *user_data)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
CallControl* cc = user_data;
|
|
|
|
|
|
|
|
|
|
if (stable)
|
|
|
|
|
if ( stable )
|
|
|
|
|
cc->audio_bit_rate = bit_rate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -401,21 +350,21 @@ void receive_video_frame_cb(ToxAV *av, uint32_t friend_number,
|
|
|
|
|
uint8_t const *y, uint8_t const *u, uint8_t const *v, uint8_t const *a,
|
|
|
|
|
int32_t ystride, int32_t ustride, int32_t vstride, int32_t astride,
|
|
|
|
|
void *user_data)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
void video_bit_rate_status_cb(ToxAV *av, uint32_t friend_number,
|
|
|
|
|
bool stable, uint32_t bit_rate, void *user_data)
|
|
|
|
|
{
|
|
|
|
|
CallControl* cc = user_data;
|
|
|
|
|
|
|
|
|
|
if (stable)
|
|
|
|
|
if ( stable )
|
|
|
|
|
cc->video_bit_rate = bit_rate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define CB_BODY(friend_number, Arg, onFunc) do { ToxWindow* windows = (Arg); int i;\
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) if (windows[i].onFunc != NULL) windows[i].onFunc(&windows[i], CallContrl.av, friend_number); } while (0)
|
|
|
|
|
|
|
|
|
@ -430,9 +379,6 @@ void callback_recv_invite ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i)
|
|
|
|
|
if (windows[i].onInvite != NULL && windows[i].num == friend_number) {
|
|
|
|
|
windows[i].onInvite(&windows[i], cc->av, friend_number, cc->call_state);
|
|
|
|
|
} else {
|
|
|
|
|
//if(windows[i].num != friend_number)
|
|
|
|
|
//line_info_add(&windows, NULL, NULL, NULL, SYS_MSG, 0, 0, "Non-matching friend number");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -441,9 +387,10 @@ void callback_recv_ringing ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
//CB_BODY(friend_number, arg, onRinging);
|
|
|
|
|
CallControl* cc = arg;
|
|
|
|
|
ToxWindow* windows = cc->window;
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i)
|
|
|
|
|
if (windows[i].onRinging != NULL && windows[i].num == friend_number) {
|
|
|
|
|
if (windows[i].onRinging != NULL && windows[i].is_call && windows[i].num == friend_number) {
|
|
|
|
|
windows[i].onRinging(&windows[i], cc->av, friend_number, cc->call_state);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -451,9 +398,10 @@ void callback_recv_starting ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
{
|
|
|
|
|
CallControl* cc = arg;
|
|
|
|
|
ToxWindow* windows = cc->window;
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i)
|
|
|
|
|
if (windows[i].onStarting != NULL && windows[i].num == friend_number) {
|
|
|
|
|
if (windows[i].onStarting != NULL && windows[i].is_call && windows[i].num == friend_number) {
|
|
|
|
|
windows[i].onStarting(&windows[i], cc->av, friend_number, cc->call_state);
|
|
|
|
|
if ( 0 != start_transmission(&windows[i], &CallContrl.calls[friend_number])) {/* YEAH! */
|
|
|
|
|
line_info_add(&windows[i], NULL, NULL, NULL, SYS_MSG, 0, 0 , "Error starting transmission!");
|
|
|
|
@ -464,12 +412,12 @@ void callback_recv_starting ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
void callback_recv_ending ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
{
|
|
|
|
|
//CB_BODY(friend_number, arg, onEnding);
|
|
|
|
|
|
|
|
|
|
CallControl* cc = arg;
|
|
|
|
|
ToxWindow* windows = cc->window;
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i)
|
|
|
|
|
if (windows[i].onEnding != NULL && windows[i].num == friend_number) {
|
|
|
|
|
if (windows[i].onEnding != NULL && windows[i].is_call && windows[i].num == friend_number) {
|
|
|
|
|
windows[i].onEnding(&windows[i], cc->av, friend_number, cc->call_state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -480,9 +428,10 @@ void callback_call_started ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
{
|
|
|
|
|
CallControl* cc = arg;
|
|
|
|
|
ToxWindow* windows = cc->window;
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i)
|
|
|
|
|
if (windows[i].onStart != NULL && windows[i].num == friend_number) {
|
|
|
|
|
if (windows[i].onStart != NULL && windows[i].is_call && windows[i].num == friend_number) {
|
|
|
|
|
windows[i].onStart(&windows[i], cc->av, friend_number, cc->call_state);
|
|
|
|
|
if ( 0 != start_transmission(&windows[i], &CallContrl.calls[friend_number]) ) {/* YEAH! */
|
|
|
|
|
line_info_add(&windows[i], NULL, NULL, NULL, SYS_MSG, 0, 0, "Error starting transmission!");
|
|
|
|
@ -498,7 +447,7 @@ void callback_call_canceled ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i)
|
|
|
|
|
if (windows[i].onCancel != NULL && windows[i].num == friend_number) {
|
|
|
|
|
if (windows[i].onCancel != NULL && windows[i].is_call && windows[i].num == friend_number) {
|
|
|
|
|
windows[i].onCancel(&windows[i], cc->av, friend_number, cc->call_state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -514,7 +463,7 @@ void callback_call_rejected ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i)
|
|
|
|
|
if (windows[i].onReject != NULL && windows[i].num == friend_number) {
|
|
|
|
|
if (windows[i].onReject != NULL && windows[i].is_call && windows[i].num == friend_number) {
|
|
|
|
|
windows[i].onReject(&windows[i], cc->av, friend_number, cc->call_state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -527,7 +476,7 @@ void callback_call_ended ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i)
|
|
|
|
|
if (windows[i].onEnd != NULL && windows[i].num == friend_number) {
|
|
|
|
|
if (windows[i].onEnd != NULL && windows[i].is_call && windows[i].num == friend_number) {
|
|
|
|
|
windows[i].onEnd(&windows[i], cc->av, friend_number, cc->call_state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -542,7 +491,7 @@ void callback_requ_timeout ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i)
|
|
|
|
|
if (windows[i].onRequestTimeout != NULL && windows[i].num == friend_number) {
|
|
|
|
|
if (windows[i].onRequestTimeout != NULL && windows[i].is_call && windows[i].num == friend_number) {
|
|
|
|
|
windows[i].onRequestTimeout(&windows[i], cc->av, friend_number, cc->call_state);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -554,7 +503,7 @@ void callback_peer_timeout ( void* av, uint32_t friend_number, void* arg )
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i)
|
|
|
|
|
if (windows[i].onPeerTimeout != NULL && windows[i].num == friend_number) {
|
|
|
|
|
if (windows[i].onPeerTimeout != NULL && windows[i].is_call && windows[i].num == friend_number) {
|
|
|
|
|
windows[i].onPeerTimeout(&windows[i], cc->av, friend_number, cc->call_state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -584,7 +533,7 @@ void cmd_call(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MA
|
|
|
|
|
TOXAV_ERR_CALL error;
|
|
|
|
|
const char *error_str;
|
|
|
|
|
|
|
|
|
|
if (argc != 0) {
|
|
|
|
|
if ( argc != 0 ) {
|
|
|
|
|
error_str = "Unknown arguments.";
|
|
|
|
|
goto on_error;
|
|
|
|
|
}
|
|
|
|
@ -594,7 +543,7 @@ void cmd_call(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MA
|
|
|
|
|
goto on_error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!self->stb->connection) {
|
|
|
|
|
if ( !self->stb->connection ) {
|
|
|
|
|
error_str = "Friend is offline.";
|
|
|
|
|
goto on_error;
|
|
|
|
|
}
|
|
|
|
@ -604,7 +553,7 @@ void cmd_call(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MA
|
|
|
|
|
|
|
|
|
|
if ( !call_running ) {
|
|
|
|
|
if ( error == TOXAV_ERR_CALL_FRIEND_ALREADY_IN_CALL ) error_str = "Already in a call!";
|
|
|
|
|
else if ( error == TOXAV_ERR_CALL_MALLOC ) error_str = "Resource allocation issue";
|
|
|
|
|
else if ( error == TOXAV_ERR_CALL_MALLOC ) error_str = "Memory allocation issue";
|
|
|
|
|
else if ( error == TOXAV_ERR_CALL_FRIEND_NOT_FOUND) error_str = "Friend number invalid";
|
|
|
|
|
else if ( error == TOXAV_ERR_CALL_FRIEND_NOT_CONNECTED) error_str = "Friend is valid but not currently connected";
|
|
|
|
|
else error_str = "Internal error!";
|
|
|
|
@ -612,7 +561,7 @@ void cmd_call(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MA
|
|
|
|
|
goto on_error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CallContrl.pending_call = true;
|
|
|
|
|
self->is_call = call_running;
|
|
|
|
|
callback_recv_ringing(CallContrl.av, self->num, &CallContrl);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
@ -625,7 +574,7 @@ void cmd_answer(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[
|
|
|
|
|
TOXAV_ERR_ANSWER error;
|
|
|
|
|
const char *error_str;
|
|
|
|
|
|
|
|
|
|
if (argc != 0) {
|
|
|
|
|
if ( argc != 0 ) {
|
|
|
|
|
error_str = "Unknown arguments.";
|
|
|
|
|
goto on_error;
|
|
|
|
|
}
|
|
|
|
@ -638,11 +587,10 @@ void cmd_answer(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[
|
|
|
|
|
bool call_running = toxav_answer(CallContrl.av, self->num, 48, 0, &error);
|
|
|
|
|
|
|
|
|
|
if ( !call_running ) {
|
|
|
|
|
//if ( error != TOXAV_ERR_ANSWER_OK ) error_str = "Cannot answer in invalid state!";
|
|
|
|
|
if ( error == TOXAV_ERR_ANSWER_FRIEND_NOT_CALLING ) error_str = "No incoming call!";
|
|
|
|
|
else if ( error == TOXAV_ERR_ANSWER_CODEC_INITIALIZATION ) error_str = "Failed to initialize codecs";
|
|
|
|
|
else if ( error == TOXAV_ERR_ANSWER_FRIEND_NOT_FOUND ) error_str = "Friend not found";
|
|
|
|
|
else if ( error == TOXAV_ERR_ANSWER_INVALID_BIT_RATE ) error_str = "Invalid bit rate";
|
|
|
|
|
else if ( error == TOXAV_ERR_ANSWER_CODEC_INITIALIZATION ) error_str = "Failed to initialize codecs!";
|
|
|
|
|
else if ( error == TOXAV_ERR_ANSWER_FRIEND_NOT_FOUND ) error_str = "Friend not found!";
|
|
|
|
|
else if ( error == TOXAV_ERR_ANSWER_INVALID_BIT_RATE ) error_str = "Invalid bit rate!";
|
|
|
|
|
else error_str = "Internal error!";
|
|
|
|
|
|
|
|
|
|
goto on_error;
|
|
|
|
@ -650,7 +598,7 @@ void cmd_answer(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[
|
|
|
|
|
|
|
|
|
|
/* Callback will print status... */
|
|
|
|
|
|
|
|
|
|
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Starting call");
|
|
|
|
|
self->is_call = call_running;
|
|
|
|
|
CallContrl.pending_call = false;
|
|
|
|
|
callback_recv_starting(CallContrl.av, self->num, &CallContrl);
|
|
|
|
|
|
|
|
|
@ -664,7 +612,7 @@ void cmd_reject(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[
|
|
|
|
|
TOXAV_ERR_CALL_CONTROL error;
|
|
|
|
|
const char *error_str;
|
|
|
|
|
|
|
|
|
|
if (argc != 0) {
|
|
|
|
|
if ( argc != 0 ) {
|
|
|
|
|
error_str = "Unknown arguments.";
|
|
|
|
|
goto on_error;
|
|
|
|
|
}
|
|
|
|
@ -676,7 +624,6 @@ void cmd_reject(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[
|
|
|
|
|
|
|
|
|
|
bool call_running;
|
|
|
|
|
call_running = toxav_call_control(CallContrl.av, self->num, TOXAV_CALL_CONTROL_CANCEL, &error);
|
|
|
|
|
//ToxAvError error = toxav_reject(CallContrl.av, self->call_idx, "Why not?");
|
|
|
|
|
|
|
|
|
|
if ( error != TOXAV_ERR_CALL_CONTROL_OK ) {
|
|
|
|
|
if ( error == TOXAV_ERR_CALL_CONTROL_INVALID_TRANSITION ) error_str = "Cannot reject in invalid state!";
|
|
|
|
@ -688,8 +635,10 @@ void cmd_reject(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[
|
|
|
|
|
|
|
|
|
|
/* Callback will print status... */
|
|
|
|
|
|
|
|
|
|
self->is_call = call_running;
|
|
|
|
|
CallContrl.pending_call = false;
|
|
|
|
|
callback_call_rejected(CallContrl.av, self->num, &CallContrl);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
on_error:
|
|
|
|
|
print_err (self, error_str);
|
|
|
|
@ -700,7 +649,7 @@ void cmd_hangup(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[
|
|
|
|
|
TOXAV_ERR_CALL_CONTROL error;
|
|
|
|
|
const char *error_str;
|
|
|
|
|
|
|
|
|
|
if (argc != 0) {
|
|
|
|
|
if ( argc != 0 ) {
|
|
|
|
|
error_str = "Unknown arguments.";
|
|
|
|
|
goto on_error;
|
|
|
|
|
}
|
|
|
|
@ -711,21 +660,23 @@ void cmd_hangup(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool call_running;
|
|
|
|
|
if( CallContrl.call_state != TOXAV_CALL_STATE_SENDING_A | TOXAV_CALL_STATE_RECEIVING_A | TOXAV_CALL_STATE_SENDING_V | TOXAV_CALL_STATE_RECEIVING_V ) {
|
|
|
|
|
if( CallContrl.pending_call && CallContrl.call_state != TOXAV_FRIEND_CALL_STATE_FINISHED ) {
|
|
|
|
|
call_running = toxav_call_control(CallContrl.av, self->num, TOXAV_CALL_CONTROL_CANCEL, &error);
|
|
|
|
|
#ifdef SOUND_NOTIFY
|
|
|
|
|
stop_sound(self->ringing_sound);
|
|
|
|
|
#endif
|
|
|
|
|
CallContrl.pending_call = false;
|
|
|
|
|
callback_call_canceled(CallContrl.av, self->num, &CallContrl);
|
|
|
|
|
callback_call_ended(CallContrl.av, self->num, &CallContrl);
|
|
|
|
|
} else {
|
|
|
|
|
call_running = toxav_call_control(CallContrl.av, &self->num, TOXAV_CALL_CONTROL_CANCEL, &error);
|
|
|
|
|
call_running = toxav_call_control(CallContrl.av, self->num, TOXAV_CALL_CONTROL_CANCEL, &error);
|
|
|
|
|
callback_call_ended(CallContrl.av, self->num, &CallContrl);
|
|
|
|
|
}
|
|
|
|
|
self->is_call = call_running;
|
|
|
|
|
|
|
|
|
|
if ( error != TOXAV_ERR_CALL_CONTROL_OK ) {
|
|
|
|
|
if ( error == TOXAV_ERR_CALL_CONTROL_INVALID_TRANSITION ) error_str = "Cannot hangup in invalid state!";
|
|
|
|
|
else if ( error == TOXAV_ERR_CALL_CONTROL_FRIEND_NOT_IN_CALL ) error_str = "No call!";
|
|
|
|
|
else if ( error == TOXAV_ERR_CALL_CONTROL_FRIEND_NOT_FOUND ) error_str = "Invalid friend!";
|
|
|
|
|
else error_str = "Internal error!";
|
|
|
|
|
|
|
|
|
|
goto on_error;
|
|
|
|
@ -852,25 +803,23 @@ void cmd_ccur_device(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*a
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If call is active, change device */
|
|
|
|
|
if ( self->num > -1) {
|
|
|
|
|
if ( self->is_call ) {
|
|
|
|
|
Call* this_call = &CallContrl.calls[self->num];
|
|
|
|
|
if (this_call->ttas) {
|
|
|
|
|
|
|
|
|
|
//ToxAvCSettings csettings;
|
|
|
|
|
//toxav_get_peer_csettings(CallContrl.av, self->num, 0, &csettings);
|
|
|
|
|
|
|
|
|
|
if (type == output) {
|
|
|
|
|
pthread_mutex_lock(&this_call->mutex);
|
|
|
|
|
close_device(output, this_call->out_idx);
|
|
|
|
|
this_call->has_output = open_device(output, selection, &this_call->out_idx,
|
|
|
|
|
CallContrl.audio_bit_rate, CallContrl.audio_frame_duration, CallContrl.audio_channels)
|
|
|
|
|
CallContrl.audio_sample_rate, CallContrl.audio_frame_duration, CallContrl.audio_channels)
|
|
|
|
|
== de_None ? 1 : 0;
|
|
|
|
|
pthread_mutex_unlock(&this_call->mutex);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
/* TODO: check for failure */
|
|
|
|
|
close_device(input, this_call->in_idx);
|
|
|
|
|
open_device(input, selection, &this_call->in_idx, CallContrl.audio_bit_rate,
|
|
|
|
|
open_device(input, selection, &this_call->in_idx, CallContrl.audio_sample_rate,
|
|
|
|
|
CallContrl.audio_frame_duration, CallContrl.audio_channels);
|
|
|
|
|
/* Set VAD as true for all; TODO: Make it more dynamic */
|
|
|
|
|
register_device_callback(self->num, this_call->in_idx, read_device_callback, &self->num, true);
|
|
|
|
@ -911,7 +860,7 @@ void cmd_mute(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MA
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* If call is active, use this_call values */
|
|
|
|
|
if ( self->num > -1) {
|
|
|
|
|
if ( self->is_call ) {
|
|
|
|
|
Call* this_call = &CallContrl.calls[self->num];
|
|
|
|
|
|
|
|
|
|
pthread_mutex_lock(&this_call->mutex);
|
|
|
|
@ -951,7 +900,7 @@ void cmd_sense(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[M
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Call must be active */
|
|
|
|
|
if ( self->num > -1) {
|
|
|
|
|
if ( self->is_call ) {
|
|
|
|
|
device_set_VAD_treshold(CallContrl.calls[self->num].in_idx, value);
|
|
|
|
|
self->chatwin->infobox.vad_lvl = value;
|
|
|
|
|
}
|
|
|
|
@ -967,29 +916,5 @@ void stop_current_call(ToxWindow* self)
|
|
|
|
|
{
|
|
|
|
|
TOXAV_ERR_CALL_CONTROL error;
|
|
|
|
|
bool call_running = toxav_call_control(CallContrl.av, &self->num, TOXAV_CALL_CONTROL_CANCEL, &error);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
ToxAvCallState callstate;
|
|
|
|
|
if ( CallContrl.av != NULL && self->num != -1 &&
|
|
|
|
|
CallContrl.call_state != TOXAV_CALL_STATE_SENDING_A | TOXAV_CALL_STATE_RECEIVING_A | TOXAV_CALL_STATE_SENDING_V | TOXAV_CALL_STATE_RECEIVING_V) {
|
|
|
|
|
switch (callstate)
|
|
|
|
|
{
|
|
|
|
|
case av_CallActive:
|
|
|
|
|
case av_CallHold:
|
|
|
|
|
//toxav_hangup(CallContrl.av, self->num);
|
|
|
|
|
toxav_call_control(CallContrl.av, &self->num, TOXAV_CALL_CONTROL_CANCEL, &error);
|
|
|
|
|
break;
|
|
|
|
|
case av_CallInviting:
|
|
|
|
|
//toxav_cancel(CallContrl.av, self->num, 0, "Not interested anymore");
|
|
|
|
|
toxav_call_control(CallContrl.av, &self->num, TOXAV_CALL_CONTROL_CANCEL, &error);
|
|
|
|
|
break;
|
|
|
|
|
case av_CallStarting:
|
|
|
|
|
//toxav_reject(CallContrl.av, self->num, "Not interested");
|
|
|
|
|
toxav_call_control(CallContrl.av, &self->num, TOXAV_CALL_CONTROL_CANCEL, &error);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
self->is_call = call_running;
|
|
|
|
|
}
|
|
|
|
|