Ignore:
Timestamp:
Sep 19, 2018 8:26:41 AM (6 years ago)
Author:
nanang
Message:

Close #2152: Updated video stream to delay video frame decoding, the minimum delay is configurable via PJMEDIA_VID_STREAM_DECODE_MIN_DELAY_MSEC.

File:
1 edited

Legend:

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

    r5820 r5887  
    14941494#endif 
    14951495 
     1496 
    14961497/** 
    14971498 * Specify the number of keyframe needed to be sent after the stream is  
     
    15041505#endif 
    15051506 
     1507 
    15061508/** 
    15071509 * Specify the interval to send keyframe after the stream is created, in msec. 
     
    15151517 
    15161518/** 
     1519 * Specify minimum delay of video decoding, in milliseconds. Lower value may 
     1520 * degrade video quality significantly in a bad network environment (e.g: 
     1521 * with persistent late and out-of-order RTP packets). Note that the value 
     1522 * must be lower than jitter buffer maximum delay (configurable via 
     1523 * pjmedia_stream_info.jb_max or pjsua_media_config.jb_max). 
     1524 * 
     1525 * Default : 100 
     1526 */ 
     1527#ifndef PJMEDIA_VID_STREAM_DECODE_MIN_DELAY_MSEC 
     1528#   define PJMEDIA_VID_STREAM_DECODE_MIN_DELAY_MSEC         100 
     1529#endif 
     1530 
     1531 
     1532 
     1533/** 
    15171534 * @} 
    15181535 */ 
Note: See TracChangeset for help on using the changeset viewer.