Ignore:
Timestamp:
Aug 5, 2016 7:26:18 AM (8 years ago)
Author:
riza
Message:

Re #1910: Implement option to regularly send video keyframe in the beginning of video call session.

File:
1 edited

Legend:

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

    r5301 r5410  
    13311331#endif 
    13321332 
     1333/** 
     1334 * Specify the number of keyframe needed to be sent after the stream is  
     1335 * created. Setting this to 0 will disable it. 
     1336 * 
     1337 * Default : 5 
     1338 */ 
     1339#ifndef PJMEDIA_VID_STREAM_START_KEYFRAME_CNT 
     1340#   define PJMEDIA_VID_STREAM_START_KEYFRAME_CNT        5 
     1341#endif 
     1342 
     1343/** 
     1344 * Specify the interval to send keyframe after the stream is created, in msec. 
     1345 * 
     1346 * Default : 1000 
     1347 */ 
     1348#ifndef PJMEDIA_VID_STREAM_START_KEYFRAME_INTERVAL_MSEC 
     1349#   define PJMEDIA_VID_STREAM_START_KEYFRAME_INTERVAL_MSEC  1000 
     1350#endif 
     1351 
    13331352 
    13341353/** 
Note: See TracChangeset for help on using the changeset viewer.