FS-4808 revert

This commit is contained in:
Anthony Minessale 2012-12-05 10:22:09 -06:00
parent 02a1aa4bc4
commit c181988036
1 changed files with 2 additions and 2 deletions

View File

@ -1490,11 +1490,11 @@ static int activate_rtp(struct private_object *tech_pvt)
{
int r = 0;
if (tech_pvt->transports[LDL_TPORT_RTP].ready && tech_pvt->transports[LDL_TPORT_RTCP].ready) {
if (tech_pvt->transports[LDL_TPORT_RTP].ready) {
r += activate_audio_rtp(tech_pvt);
}
if (tech_pvt->transports[LDL_TPORT_VIDEO_RTP].ready && tech_pvt->transports[LDL_TPORT_VIDEO_RTCP].ready) {
if (tech_pvt->transports[LDL_TPORT_VIDEO_RTP].ready) {
r += activate_video_rtp(tech_pvt);
}