Changeset 4742 for pjproject


Ignore:
Timestamp:
Feb 12, 2014 5:18:31 AM (10 years ago)
Author:
bennylp
Message:

More pjsua2 API (re #1519): renamed TimeValue? to TimeVal? due to conflict in iOS SDK

Location:
pjproject/trunk/pjsip
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua2/call.hpp

    r4724 r4742  
    9191struct RtcpStreamStat 
    9292{ 
    93     TimeValue       update;     /**< Time of last update.                   */ 
     93    TimeVal         update;     /**< Time of last update.                   */ 
    9494    unsigned        updateCount;/**< Number of updates (to calculate avg)   */ 
    9595    unsigned        pkt;        /**< Total number of packets                */ 
     
    141141struct RtcpStat 
    142142{ 
    143     TimeValue           start;          /**< Time when session was created  */ 
     143    TimeVal             start;          /**< Time when session was created  */ 
    144144     
    145145    RtcpStreamStat      txStat;         /**< Encoder stream statistics.     */ 
     
    509509     * established) 
    510510     */ 
    511     TimeValue           connectDuration; 
     511    TimeVal             connectDuration; 
    512512     
    513513    /** 
    514514     * Total call duration, including set-up time 
    515515     */ 
    516     TimeValue           totalDuration; 
     516    TimeVal             totalDuration; 
    517517     
    518518    /** 
  • pjproject/trunk/pjsip/include/pjsua2/types.hpp

    r4704 r4742  
    237237 * Representation of time value. 
    238238 */ 
    239 struct TimeValue 
     239struct TimeVal 
    240240{ 
    241241    /** 
  • pjproject/trunk/pjsip/src/pjsua2/types.cpp

    r4704 r4742  
    8888/////////////////////////////////////////////////////////////////////////////// 
    8989 
    90 void TimeValue::fromPj(const pj_time_val &prm) 
     90void TimeVal::fromPj(const pj_time_val &prm) 
    9191{ 
    9292    this->sec  = prm.sec; 
Note: See TracChangeset for help on using the changeset viewer.