Ignore:
Timestamp:
Apr 2, 2012 8:40:54 AM (12 years ago)
Author:
nanang
Message:

Misc (re #1446): Added macro PJMEDIA_MAX_VID_PAYLOAD_SIZE, also updated the default encoding MTU of ffmpeg codec & H263/H264 packetizers to this macro setting.

File:
1 edited

Legend:

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

    r3999 r4006  
    11601160#endif 
    11611161 
     1162 
     1163/** 
     1164 * Maximum video payload size. Note that this must not be greater than 
     1165 * PJMEDIA_MAX_MTU. 
     1166 * 
     1167 * Default: (PJMEDIA_MAX_MTU - 100) 
     1168 */ 
     1169#ifndef PJMEDIA_MAX_VID_PAYLOAD_SIZE                     
     1170#  define PJMEDIA_MAX_VID_PAYLOAD_SIZE          (PJMEDIA_MAX_MTU - 100) 
     1171#endif 
     1172 
     1173 
    11621174/** 
    11631175 * @} 
Note: See TracChangeset for help on using the changeset viewer.