Changeset 4919
- Timestamp:
- Sep 9, 2014 4:25:03 AM (10 years ago)
- Location:
- pjproject/trunk/pjsip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/call.hpp
r4918 r4919 87 87 88 88 /** 89 * Types of loss detected. 90 */ 91 struct LossType 92 { 93 unsigned burst; /**< Burst/sequential packet lost detected */ 94 unsigned random; /**< Random packet lost detected. */ 95 }; 96 97 /** 89 98 * Unidirectional RTP stream statistics. 90 99 */ … … 102 111 MathStat lossPeriodUsec; /**< Loss period statistics */ 103 112 104 /**< Types of loss detected. */ 105 unsigned burst; /**< Burst/sequential packet lost detected */ 106 unsigned random; /**< Random packet lost detected. */ 113 LossType lossType; /**< Types of loss detected. */ 107 114 108 115 MathStat jitterUsec; /**< Jitter statistics */ -
pjproject/trunk/pjsip/src/pjsua2/call.cpp
r4918 r4919 57 57 this->dup = prm.dup; 58 58 this->lossPeriodUsec.fromPj(prm.loss_period); 59 this-> burst= prm.loss_type.burst;60 this-> random= prm.loss_type.random;59 this->lossType.burst = prm.loss_type.burst; 60 this->lossType.random = prm.loss_type.random; 61 61 this->jitterUsec.fromPj(prm.jitter); 62 62 }
Note: See TracChangeset
for help on using the changeset viewer.