Ignore:
Timestamp:
Aug 1, 2013 4:18:15 AM (11 years ago)
Author:
ming
Message:

Closed #1692: Allow multiple codecs in SDP answer
By default, the setting is disabled, to change it during run-time, use the function pjmedia_sdp_neg_set_allow_multiple_codecs().

File:
1 edited

Legend:

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

    r4538 r4577  
    669669#endif 
    670670 
     671/** 
     672 * This specifies the behavior of the SDP negotiator when responding to an 
     673 * offer, whether it should answer with multiple formats or not. 
     674 * 
     675 * Note that this behavior can be changed during run-time by calling 
     676 * pjmedia_sdp_neg_set_allow_multiple_codecs(). 
     677 * 
     678 * Default is 0 (to maintain backward compatibility) 
     679 */ 
     680#ifndef PJMEDIA_SDP_NEG_ANSWER_MULTIPLE_CODECS 
     681#   define PJMEDIA_SDP_NEG_ANSWER_MULTIPLE_CODECS       0 
     682#endif 
     683 
    671684 
    672685/** 
Note: See TracChangeset for help on using the changeset viewer.