Changeset 5410 for pjproject/trunk/pjsip/src/pjsua2/account.cpp
- Timestamp:
- Aug 5, 2016 7:26:18 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua2/account.cpp
r5346 r5410 278 278 NODE_READ_NUM_T ( this_node, pjmedia_vid_stream_rc_method, rateControlMethod); 279 279 NODE_READ_UNSIGNED( this_node, rateControlBandwidth); 280 NODE_READ_UNSIGNED( this_node, startKeyframeCount); 281 NODE_READ_UNSIGNED( this_node, startKeyframeInterval); 280 282 } 281 283 … … 291 293 NODE_WRITE_NUM_T ( this_node, pjmedia_vid_stream_rc_method, rateControlMethod); 292 294 NODE_WRITE_UNSIGNED( this_node, rateControlBandwidth); 295 NODE_WRITE_UNSIGNED( this_node, startKeyframeCount); 296 NODE_WRITE_UNSIGNED( this_node, startKeyframeInterval); 293 297 } 294 298 … … 434 438 ret.vid_stream_rc_cfg.method= videoConfig.rateControlMethod; 435 439 ret.vid_stream_rc_cfg.bandwidth = videoConfig.rateControlBandwidth; 440 ret.vid_stream_sk_cfg.count = videoConfig.startKeyframeCount; 441 ret.vid_stream_sk_cfg.interval = videoConfig.startKeyframeInterval; 436 442 } 437 443 … … 599 605 videoConfig.rateControlMethod = prm.vid_stream_rc_cfg.method; 600 606 videoConfig.rateControlBandwidth = prm.vid_stream_rc_cfg.bandwidth; 607 videoConfig.startKeyframeCount = prm.vid_stream_sk_cfg.count; 608 videoConfig.startKeyframeInterval = prm.vid_stream_sk_cfg.interval; 601 609 } 602 610
Note: See TracChangeset
for help on using the changeset viewer.