DO NOT PULL TO MASTER. Fix typo when setting the video recv port. Bug does not exist in master due to the refactor.

This commit is contained in:
William King 2013-06-12 18:28:14 -07:00
parent ac9bfb194b
commit 3d13776af2
1 changed files with 1 additions and 1 deletions

View File

@ -6104,7 +6104,7 @@ int sofia_recover_callback(switch_core_session_t *session)
if (switch_rtp_ready(tech_pvt->video_rtp_session)) {
if ((tmp = switch_channel_get_variable(channel, "sip_video_recv_pt"))) {
switch_rtp_set_recv_pt(tech_pvt->rtp_session, (switch_payload_t)atoi(tmp));
switch_rtp_set_recv_pt(tech_pvt->video_rtp_session, (switch_payload_t)atoi(tmp));
}
}