Index: channels/chan_sip.c =================================================================== --- channels/chan_sip.c (revision 265699) +++ channels/chan_sip.c (working copy) @@ -7244,7 +7244,8 @@ if (sip_methods[intended_method].need_rtp) { p->rtp = ast_rtp_new_with_bindaddr(sched, io, 1, 0, bindaddr.sin_addr); /* If the global videosupport flag is on, we always create a RTP interface for video */ - if (ast_test_flag(&p->flags[1], SIP_PAGE2_VIDEOSUPPORT)) + if (ast_test_flag(&p->flags[1], SIP_PAGE2_VIDEOSUPPORT) || + ast_test_flag(&p->flags[1], SIP_PAGE2_VIDEOSUPPORT_ALWAYS)) p->vrtp = ast_rtp_new_with_bindaddr(sched, io, 1, 0, bindaddr.sin_addr); if (ast_test_flag(&p->flags[1], SIP_PAGE2_TEXTSUPPORT)) p->trtp = ast_rtp_new_with_bindaddr(sched, io, 1, 0, bindaddr.sin_addr);