Ignore:
Timestamp:
Dec 6, 2010 4:25:44 AM (14 years ago)
Author:
bennylp
Message:

Fixed #1160: Option to bypass RTP payload type verification in the stream (thanks Johan Lantz for the suggestion)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/config.h

    r3345 r3387  
    503503#endif 
    504504 
     505/** 
     506 * Perform RTP payload type checking in the stream. Normally the peer 
     507 * MUST send RTP with payload type as we specified in our SDP. Certain 
     508 * agents may not be able to follow this hence the only way to have 
     509 * communication is to disable this check. 
     510 * 
     511 * Default: 1 
     512 */ 
     513#ifndef PJMEDIA_STREAM_CHECK_RTP_PT 
     514#   define PJMEDIA_STREAM_CHECK_RTP_PT          1 
     515#endif 
    505516 
    506517/** 
Note: See TracChangeset for help on using the changeset viewer.