- Timestamp:
- Feb 12, 2014 5:18:31 AM (11 years ago)
- Location:
- pjproject/trunk/pjsip
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/call.hpp
r4724 r4742 91 91 struct RtcpStreamStat 92 92 { 93 TimeVal ueupdate; /**< Time of last update. */93 TimeVal update; /**< Time of last update. */ 94 94 unsigned updateCount;/**< Number of updates (to calculate avg) */ 95 95 unsigned pkt; /**< Total number of packets */ … … 141 141 struct RtcpStat 142 142 { 143 TimeVal uestart; /**< Time when session was created */143 TimeVal start; /**< Time when session was created */ 144 144 145 145 RtcpStreamStat txStat; /**< Encoder stream statistics. */ … … 509 509 * established) 510 510 */ 511 TimeVal ueconnectDuration;511 TimeVal connectDuration; 512 512 513 513 /** 514 514 * Total call duration, including set-up time 515 515 */ 516 TimeVal uetotalDuration;516 TimeVal totalDuration; 517 517 518 518 /** -
pjproject/trunk/pjsip/include/pjsua2/types.hpp
r4704 r4742 237 237 * Representation of time value. 238 238 */ 239 struct TimeVal ue239 struct TimeVal 240 240 { 241 241 /** -
pjproject/trunk/pjsip/src/pjsua2/types.cpp
r4704 r4742 88 88 /////////////////////////////////////////////////////////////////////////////// 89 89 90 void TimeVal ue::fromPj(const pj_time_val &prm)90 void TimeVal::fromPj(const pj_time_val &prm) 91 91 { 92 92 this->sec = prm.sec;
Note: See TracChangeset
for help on using the changeset viewer.