mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Merge branch 'master' of https://github.com/irungentoo/toxcore into logger_init_fix
This commit is contained in:
commit
1fd43b4e81
|
@ -334,7 +334,7 @@ void test_addto_lists(IP ip)
|
|||
for (i = 0; i < dht->num_friends; ++i)
|
||||
test_addto_lists_possible_bad(dht, dht->friends_list[i].client_list, MAX_FRIEND_CLIENTS, &ip_port,
|
||||
dht->friends_list[i].client_id);
|
||||
*/
|
||||
*/
|
||||
// check "good" entries
|
||||
test_addto_lists_good(dht, dht->close_clientlist, LCLIENT_LIST, &ip_port, dht->self_public_key);
|
||||
|
||||
|
|
|
@ -270,9 +270,6 @@ static int init_video_encoder(CSSession *cs, uint16_t max_width, uint16_t max_he
|
|||
cfg.kf_max_dist = 48;
|
||||
cfg.kf_mode = VPX_KF_AUTO;
|
||||
|
||||
cs->max_width = max_width;
|
||||
cs->max_height = max_height;
|
||||
|
||||
rc = vpx_codec_enc_init_ver(&cs->v_encoder, VIDEO_CODEC_ENCODER_INTERFACE, &cfg, 0, VPX_ENCODER_ABI_VERSION);
|
||||
|
||||
if ( rc != VPX_CODEC_OK) {
|
||||
|
@ -287,6 +284,10 @@ static int init_video_encoder(CSSession *cs, uint16_t max_width, uint16_t max_he
|
|||
return -1;
|
||||
}
|
||||
|
||||
cs->max_width = max_width;
|
||||
cs->max_height = max_height;
|
||||
cs->video_bitrate = video_bitrate;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -436,8 +437,17 @@ int cs_set_video_encoder_resolution(CSSession *cs, uint16_t width, uint16_t heig
|
|||
if (cfg.g_w == width && cfg.g_h == height)
|
||||
return 0;
|
||||
|
||||
if (width * height > cs->max_width * cs->max_height)
|
||||
return cs_ErrorSettingVideoResolution;
|
||||
if (width * height > cs->max_width * cs->max_height) {
|
||||
vpx_codec_ctx_t v_encoder = cs->v_encoder;
|
||||
|
||||
if (init_video_encoder(cs, width, height, cs->video_bitrate) == -1) {
|
||||
cs->v_encoder = v_encoder;
|
||||
return cs_ErrorSettingVideoResolution;
|
||||
}
|
||||
|
||||
vpx_codec_destroy(&v_encoder);
|
||||
return 0;
|
||||
}
|
||||
|
||||
LOGGER_DEBUG("New video resolution: %u %u", width, height);
|
||||
cfg.g_w = width;
|
||||
|
@ -468,6 +478,7 @@ int cs_set_video_encoder_bitrate(CSSession *cs, uint32_t video_bitrate)
|
|||
return cs_ErrorSettingVideoBitrate;
|
||||
}
|
||||
|
||||
cs->video_bitrate = video_bitrate;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -85,6 +85,7 @@ typedef struct _CSSession {
|
|||
vpx_codec_ctx_t v_decoder;
|
||||
int max_width;
|
||||
int max_height;
|
||||
unsigned int video_bitrate;
|
||||
|
||||
|
||||
/* Data handling */
|
||||
|
|
|
@ -63,6 +63,9 @@ static const uint8_t audio_index = 0, video_index = 1;
|
|||
|
||||
typedef struct _ToxAvCall {
|
||||
pthread_mutex_t mutex[1];
|
||||
pthread_mutex_t mutex_encoding_audio[1];
|
||||
pthread_mutex_t mutex_encoding_video[1];
|
||||
pthread_mutex_t mutex_do[1];
|
||||
RTPSession *crtps[2]; /** Audio is first and video is second */
|
||||
CSSession *cs;
|
||||
_Bool active;
|
||||
|
@ -181,10 +184,14 @@ void toxav_do(ToxAv *av)
|
|||
for (; i < av->max_calls; i ++) {
|
||||
pthread_mutex_lock(av->calls[i].mutex);
|
||||
|
||||
if (av->calls[i].active)
|
||||
if (av->calls[i].active) {
|
||||
pthread_mutex_lock(av->calls[i].mutex_do);
|
||||
pthread_mutex_unlock(av->calls[i].mutex);
|
||||
cs_do(av->calls[i].cs);
|
||||
|
||||
pthread_mutex_unlock(av->calls[i].mutex);
|
||||
pthread_mutex_unlock(av->calls[i].mutex_do);
|
||||
} else {
|
||||
pthread_mutex_unlock(av->calls[i].mutex);
|
||||
}
|
||||
}
|
||||
|
||||
uint64_t end = current_time_monotonic();
|
||||
|
@ -273,6 +280,13 @@ int toxav_prepare_transmission ( ToxAv *av, int32_t call_index, int support_vide
|
|||
return av_ErrorNoCall;
|
||||
}
|
||||
|
||||
if (pthread_mutex_init(call->mutex_encoding_audio, NULL) != 0
|
||||
|| pthread_mutex_init(call->mutex_encoding_video, NULL) != 0 || pthread_mutex_init(call->mutex_do, NULL) != 0) {
|
||||
pthread_mutex_unlock(call->mutex);
|
||||
LOGGER_ERROR("Error while starting RTP session: mutex initializing failed!\n");
|
||||
return av_ErrorUnknown;
|
||||
}
|
||||
|
||||
const ToxAvCSettings *c_peer = toxavcsettings_cast
|
||||
(&av->msi_session->calls[call_index]->csettings_peer[0]);
|
||||
const ToxAvCSettings *c_self = toxavcsettings_cast
|
||||
|
@ -339,9 +353,15 @@ int toxav_prepare_transmission ( ToxAv *av, int32_t call_index, int support_vide
|
|||
return av_ErrorNone;
|
||||
error:
|
||||
rtp_kill(call->crtps[audio_index], av->messenger);
|
||||
call->crtps[audio_index] = NULL;
|
||||
rtp_kill(call->crtps[video_index], av->messenger);
|
||||
call->crtps[video_index] = NULL;
|
||||
cs_kill(call->cs);
|
||||
memset(call, 0, sizeof(ToxAvCall));
|
||||
call->cs = NULL;
|
||||
call->active = 0;
|
||||
pthread_mutex_destroy(call->mutex_encoding_audio);
|
||||
pthread_mutex_destroy(call->mutex_encoding_video);
|
||||
pthread_mutex_destroy(call->mutex_do);
|
||||
|
||||
pthread_mutex_unlock(call->mutex);
|
||||
return av_ErrorCreatingRtpSessions;
|
||||
|
@ -366,6 +386,13 @@ int toxav_kill_transmission ( ToxAv *av, int32_t call_index )
|
|||
|
||||
call->active = 0;
|
||||
|
||||
pthread_mutex_lock(call->mutex_encoding_audio);
|
||||
pthread_mutex_unlock(call->mutex_encoding_audio);
|
||||
pthread_mutex_lock(call->mutex_encoding_video);
|
||||
pthread_mutex_unlock(call->mutex_encoding_video);
|
||||
pthread_mutex_lock(call->mutex_do);
|
||||
pthread_mutex_unlock(call->mutex_do);
|
||||
|
||||
rtp_kill(call->crtps[audio_index], av->messenger);
|
||||
call->crtps[audio_index] = NULL;
|
||||
rtp_kill(call->crtps[video_index], av->messenger);
|
||||
|
@ -373,6 +400,10 @@ int toxav_kill_transmission ( ToxAv *av, int32_t call_index )
|
|||
cs_kill(call->cs);
|
||||
call->cs = NULL;
|
||||
|
||||
pthread_mutex_destroy(call->mutex_encoding_audio);
|
||||
pthread_mutex_destroy(call->mutex_encoding_video);
|
||||
pthread_mutex_destroy(call->mutex_do);
|
||||
|
||||
pthread_mutex_unlock(call->mutex);
|
||||
|
||||
return av_ErrorNone;
|
||||
|
@ -434,11 +465,14 @@ int toxav_prepare_video_frame ( ToxAv *av, int32_t call_index, uint8_t *dest, in
|
|||
return av_ErrorSettingVideoResolution;
|
||||
}
|
||||
|
||||
pthread_mutex_lock(call->mutex_encoding_video);
|
||||
pthread_mutex_unlock(call->mutex);
|
||||
|
||||
int rc = vpx_codec_encode(&call->cs->v_encoder, input, call->cs->frame_counter, 1, 0, MAX_ENCODE_TIME_US);
|
||||
|
||||
if ( rc != VPX_CODEC_OK) {
|
||||
LOGGER_ERROR("Could not encode video frame: %s\n", vpx_codec_err_to_string(rc));
|
||||
pthread_mutex_unlock(call->mutex);
|
||||
pthread_mutex_unlock(call->mutex_encoding_video);
|
||||
return av_ErrorEncodingVideo;
|
||||
}
|
||||
|
||||
|
@ -451,7 +485,7 @@ int toxav_prepare_video_frame ( ToxAv *av, int32_t call_index, uint8_t *dest, in
|
|||
while ( (pkt = vpx_codec_get_cx_data(&call->cs->v_encoder, &iter)) ) {
|
||||
if (pkt->kind == VPX_CODEC_CX_FRAME_PKT) {
|
||||
if ( copied + pkt->data.frame.sz > dest_max ) {
|
||||
pthread_mutex_unlock(call->mutex);
|
||||
pthread_mutex_unlock(call->mutex_encoding_video);
|
||||
return av_ErrorPacketTooLarge;
|
||||
}
|
||||
|
||||
|
@ -460,7 +494,7 @@ int toxav_prepare_video_frame ( ToxAv *av, int32_t call_index, uint8_t *dest, in
|
|||
}
|
||||
}
|
||||
|
||||
pthread_mutex_unlock(call->mutex);
|
||||
pthread_mutex_unlock(call->mutex_encoding_video);
|
||||
return copied;
|
||||
}
|
||||
|
||||
|
@ -509,8 +543,10 @@ int toxav_prepare_audio_frame ( ToxAv *av,
|
|||
return av_ErrorInvalidState;
|
||||
}
|
||||
|
||||
int32_t rc = opus_encode(call->cs->audio_encoder, frame, frame_size, dest, dest_max);
|
||||
pthread_mutex_lock(call->mutex_encoding_audio);
|
||||
pthread_mutex_unlock(call->mutex);
|
||||
int32_t rc = opus_encode(call->cs->audio_encoder, frame, frame_size, dest, dest_max);
|
||||
pthread_mutex_unlock(call->mutex_encoding_audio);
|
||||
|
||||
if (rc < 0) {
|
||||
LOGGER_ERROR("Failed to encode payload: %s\n", opus_strerror(rc));
|
||||
|
@ -539,7 +575,6 @@ int toxav_send_audio ( ToxAv *av, int32_t call_index, const uint8_t *data, unsig
|
|||
|
||||
int rc = toxav_send_rtp_payload(av, call, av_TypeAudio, data, size);
|
||||
pthread_mutex_unlock(call->mutex);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user