mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 08:51:50 +00:00
update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7961 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
63b7f1cac9
commit
45df9ee1d6
@ -394,6 +394,7 @@ SWITCH_STANDARD_APP(fifo_function)
|
||||
pop = NULL;
|
||||
|
||||
if (moh) {
|
||||
memset(&args, 0, sizeof(args));
|
||||
args.read_frame_callback = read_frame_callback;
|
||||
args.user_data = node;
|
||||
switch_ivr_play_file(session, NULL, moh, &args);
|
||||
@ -517,10 +518,9 @@ SWITCH_STANDARD_APP(fifo_function)
|
||||
memset(buf, 0, sizeof(buf));
|
||||
|
||||
if (!switch_strlen_zero(fifo_consumer_wrapup_sound)) {
|
||||
memset(&args, 0, sizeof(args));
|
||||
args.buf = buf;
|
||||
args.buflen = sizeof(buf);
|
||||
|
||||
memset(&args, 0, sizeof(args));
|
||||
switch_ivr_play_file(session, NULL, fifo_consumer_wrapup_sound, &args);
|
||||
}
|
||||
|
||||
|
@ -1828,8 +1828,9 @@ static void sofia_handle_sip_i_state(switch_core_session_t *session, int status,
|
||||
}
|
||||
break;
|
||||
case nua_callstate_ready:
|
||||
if (channel) {
|
||||
switch_channel_clear_flag(channel, CF_REQ_MEDIA);
|
||||
|
||||
}
|
||||
if (tech_pvt && nh == tech_pvt->nh2) {
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Cheater Reinvite!\n");
|
||||
switch_set_flag_locked(tech_pvt, TFLAG_REINVITE);
|
||||
|
@ -223,7 +223,8 @@ void sofia_glue_set_local_sdp(private_object_t *tech_pvt, const char *ip, uint32
|
||||
}
|
||||
|
||||
if (switch_test_flag(tech_pvt, TFLAG_VIDEO)) {
|
||||
if (!tech_pvt->local_sdp_video_port) {
|
||||
if (!switch_channel_test_flag(tech_pvt->channel, CF_ANSWERED) && !switch_channel_test_flag(tech_pvt->channel, CF_EARLY_MEDIA) &&
|
||||
!tech_pvt->local_sdp_video_port) {
|
||||
sofia_glue_tech_choose_video_port(tech_pvt);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user