[core] flush all the rtp on transfers

This commit is contained in:
Anthony Minessale 2020-06-23 05:52:53 +00:00 committed by Andrey Volk
parent f8004e1d66
commit 8a6a6fca47
2 changed files with 5 additions and 3 deletions

View File

@ -13101,15 +13101,15 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_receive_message(switch_core_se
goto end;
case SWITCH_MESSAGE_INDICATE_AUDIO_SYNC:
if (switch_rtp_ready(a_engine->rtp_session)) {
switch_rtp_reset_jb(a_engine->rtp_session);
rtp_flush_read_buffer(a_engine->rtp_session, SWITCH_RTP_FLUSH_ONCE);
//switch_rtp_reset_jb(a_engine->rtp_session);
}
goto end;
case SWITCH_MESSAGE_INDICATE_VIDEO_SYNC:
if (switch_rtp_ready(v_engine->rtp_session)) {
switch_rtp_reset_jb(v_engine->rtp_session);
switch_rtp_flush(v_engine->rtp_session);
//switch_rtp_reset_jb(v_engine->rtp_session);
}
goto end;
case SWITCH_MESSAGE_INDICATE_3P_MEDIA:

View File

@ -334,6 +334,8 @@ static void switch_core_standard_on_execute(switch_core_session_t *session)
switch_channel_clear_flag(session->channel, CF_RESET);
switch_core_session_video_reset(session);
switch_channel_audio_sync(session->channel);
switch_channel_video_sync(session->channel);
if ((extension = switch_channel_get_caller_extension(session->channel)) == 0) {
switch_channel_hangup(session->channel, SWITCH_CAUSE_NORMAL_CLEARING);