Ignore:
Timestamp:
Nov 13, 2019 9:11:04 AM (4 years ago)
Author:
nanang
Message:

Close #1437: Video keyframe request/response using RTCP-FB PLI.

File:
1 edited

Legend:

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

    r6105 r6106  
    466466 
    467467/** 
    468  * Interval to send RTCP packets, in msec 
     468 * Interval to send regular RTCP packets, in msec. 
    469469 */ 
    470470#ifndef PJMEDIA_RTCP_INTERVAL 
    471 #       define PJMEDIA_RTCP_INTERVAL            5000    /* msec*/ 
     471#   define PJMEDIA_RTCP_INTERVAL                5000    /* msec*/ 
     472#endif 
     473 
     474 
     475/** 
     476 * Minimum interval between two consecutive outgoing RTCP-FB packets, 
     477 * such as Picture Loss Indication, in msec. 
     478 */ 
     479#ifndef PJMEDIA_RTCP_FB_INTERVAL 
     480#   define PJMEDIA_RTCP_FB_INTERVAL             50      /* msec*/ 
    472481#endif 
    473482 
     
    15281537 
    15291538/** 
     1539 * Specify the minimum interval to send video keyframe, in msec. 
     1540 * 
     1541 * Default : 1000 
     1542 */ 
     1543#ifndef PJMEDIA_VID_STREAM_MIN_KEYFRAME_INTERVAL_MSEC 
     1544#   define PJMEDIA_VID_STREAM_MIN_KEYFRAME_INTERVAL_MSEC    1000 
     1545#endif 
     1546 
     1547 
     1548/** 
    15301549 * Specify minimum delay of video decoding, in milliseconds. Lower value may 
    15311550 * degrade video quality significantly in a bad network environment (e.g: 
Note: See TracChangeset for help on using the changeset viewer.