Changeset 692


Ignore:
Timestamp:
10/24/11 21:41:46 (7 months ago)
Author:
josh
Message:

-- RTSP: Fix check for UDP transport.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/1.0/sources/thelib/src/protocols/rtp/basertspappprotocolhandler.cpp

    r647 r692  
    553553        //2. Check and see if it has RTP/AVP/TCP,RTP/AVP/UDP or RTP/AVP 
    554554        if ((!transport.HasKey("rtp/avp/tcp")) 
    555                         && (!transport.HasKey("rtp/avp/usp")) 
     555                        && (!transport.HasKey("rtp/avp/udp")) 
    556556                        && (!transport.HasKey("rtp/avp"))) { 
    557557                FATAL("Invalid transport line: %s", STR(transportLine)); 
  • trunk/sources/thelib/src/protocols/rtp/basertspappprotocolhandler.cpp

    r647 r692  
    553553        //2. Check and see if it has RTP/AVP/TCP,RTP/AVP/UDP or RTP/AVP 
    554554        if ((!transport.HasKey("rtp/avp/tcp")) 
    555                         && (!transport.HasKey("rtp/avp/usp")) 
     555                        && (!transport.HasKey("rtp/avp/udp")) 
    556556                        && (!transport.HasKey("rtp/avp"))) { 
    557557                FATAL("Invalid transport line: %s", STR(transportLine)); 
Note: See TracChangeset for help on using the changeset viewer.