fix regression in media for recovered calls

This commit is contained in:
Anthony Minessale 2012-11-26 16:19:49 -06:00
parent 428cd029de
commit ad49dabd8c

View File

@ -3254,13 +3254,11 @@ switch_status_t sofia_glue_activate_rtp(private_object_t *tech_pvt, switch_rtp_f
} }
if (!sofia_test_flag(tech_pvt, TFLAG_REINVITE)) { if (!sofia_test_flag(tech_pvt, TFLAG_REINVITE) && !sofia_test_flag(tech_pvt, TFLAG_SDP) && switch_rtp_ready(tech_pvt->rtp_session)) {
if (switch_rtp_ready(tech_pvt->rtp_session)) { if (sofia_test_flag(tech_pvt, TFLAG_VIDEO) && !switch_rtp_ready(tech_pvt->video_rtp_session)) {
if (sofia_test_flag(tech_pvt, TFLAG_VIDEO) && !switch_rtp_ready(tech_pvt->video_rtp_session)) { goto video;
goto video; } else {
} else { goto end;
goto end;
}
} }
} }