Changeset 481:72ea00382e44 in verona for phapi/phapi.c


Ignore:
Timestamp:
May 18, 2012 12:17:02 PM (12 months ago)
Author:
laurent <laurent@…>
Branch:
default
Message:

bug fix : nego_mstreams => nego_mflags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • phapi/phapi.c

    r480 r481  
    11521152 
    11531153 
    1154                   if (_is_audio_enabled(ca->nego_mstreams)) { 
     1154                  if (_is_audio_enabled(ca->nego_mflags)) { 
    11551155                          ph_upnp_redir_port(localip, ca->loc_sdp_audio_port, &ca->pub_sdp_audio_port, udp); 
    11561156                          if (!(vl->mobility & PH_NORTCP_ATTR)) 
     
    11581158                  } 
    11591159#ifdef PHAPI_VIDEO_SUPPORT 
    1160                   if (_is_video_enabled(ca->nego_mstreams)) { 
     1160                  if (_is_video_enabled(ca->nego_mflags)) { 
    11611161                          ph_upnp_redir_port(localip, ca->loc_sdp_video_port, &ca->pub_sdp_video_port, udp); 
    11621162                          if (!(vl->mobility &  PH_NORTCP_ATTR)) 
     
    11751175                  struct vline* vl = vlid2vline(ca->vlid); 
    11761176 
    1177                   if (_is_audio_enabled(ca->nego_mstreams)) { 
     1177                  if (_is_audio_enabled(ca->nego_mflags)) { 
    11781178                          ph_upnp_release_port(ca->pub_sdp_audio_port, udp); 
    11791179                          if (!(vl->mobility & PH_NORTCP_ATTR)) 
     
    11811181                  } 
    11821182#ifdef PHAPI_VIDEO_SUPPORT 
    1183                   if (_is_video_enabled(ca->nego_mstreams)) { 
     1183                  if (_is_video_enabled(ca->nego_mflags)) { 
    11841184                          ph_upnp_release_port(ca->pub_sdp_video_port, udp); 
    11851185                          if (!(vl->mobility &  PH_NORTCP_ATTR)) 
     
    11981198#ifdef PHAPI_VIDEO_SUPPORT 
    11991199 
    1200                   if (_is_video_enabled(ca->nego_mstreams)) { 
     1200                  if (_is_video_enabled(ca->nego_mflags)) { 
    12011201                          if (ca->video_rtptr) 
    12021202                                  rtp_socks_close(ca->video_rtptr); 
Note: See TracChangeset for help on using the changeset viewer.