Ignore:
Timestamp:
Feb 21, 2008 4:46:34 PM (16 years ago)
Author:
bennylp
Message:

Ticket #486: Handle G.722 wong clock rate bug and other codec with inconsistent clock rate

File:
1 edited

Legend:

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

    r1735 r1813  
    486486 
    487487/** 
    488  * SRTP Transport 
     488 * Enable support for SRTP media transport. This will require linking 
     489 * with libsrtp from the third_party directory. 
     490 * 
    489491 * By default it is enabled. 
    490492 */ 
     
    495497 
    496498/** 
     499 * Enable support to handle codecs with inconsistent clock rate 
     500 * between clock rate in SDP/RTP & the clock rate that is actually used. 
     501 * This happens for example with G.722 and MPEG audio codecs. 
     502 * See: 
     503 *  - G.722      : RFC 3551 4.5.2 
     504 *  - MPEG audio : RFC 3551 4.5.13 & RFC 3119 
     505 * 
     506 * Also when this feature is enabled, some handling will be performed 
     507 * to deal with clock rate incompatibilities of some phones. 
     508 * 
     509 * By default it is enabled. 
     510 */ 
     511#ifndef PJMEDIA_HANDLE_G722_MPEG_BUG 
     512#   define PJMEDIA_HANDLE_G722_MPEG_BUG             1 
     513#endif 
     514 
     515 
     516/** 
    497517 * @} 
    498518 */ 
Note: See TracChangeset for help on using the changeset viewer.