Ignore:
Timestamp:
Jul 2, 2006 12:29:54 PM (18 years ago)
Author:
bennylp
Message:

Miscellaneous bug fix and improvements in PJMEDIA: (1) more stricker SDP parsing and validation, (2) fixed bug in RTCP attribute generation in SDP, (3) configurable telephone-event payload type

File:
1 edited

Legend:

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

    r568 r571  
    164164 
    165165 
     166/** 
     167 * This macro declares the payload type for telephone-event 
     168 * that is advertised by PJMEDIA for outgoing SDP. If this macro 
     169 * is set to zero, telephone events would not be advertised nor 
     170 * supported. 
     171 * 
     172 * If this value is changed to other number, please update the 
     173 * PJMEDIA_RTP_PT_TELEPHONE_EVENTS_STR too. 
     174 */ 
     175#ifndef PJMEDIA_RTP_PT_TELEPHONE_EVENTS 
     176#   define PJMEDIA_RTP_PT_TELEPHONE_EVENTS          101 
     177#endif 
     178 
     179 
     180/** 
     181 * Macro to get the string representation of the telephone-event 
     182 * payload type. 
     183 */ 
     184#ifndef PJMEDIA_RTP_PT_TELEPHONE_EVENTS_STR 
     185#   define PJMEDIA_RTP_PT_TELEPHONE_EVENTS_STR      "101" 
     186#endif 
     187 
     188 
    166189 
    167190/** 
Note: See TracChangeset for help on using the changeset viewer.