Ignore:
Timestamp:
May 17, 2008 2:54:18 PM (16 years ago)
Author:
nanang
Message:

More on ticket #535: updated files using and related to math.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r1931 r1961  
    20592059               "%s        total %spkt %sB (%sB +IP hdr) @avg=%sbps/%sbps\n" 
    20602060               "%s        pkt loss=%d (%3.1f%%), dup=%d (%3.1f%%), reorder=%d (%3.1f%%)\n" 
    2061                "%s              (msec)    min     avg     max     last\n" 
    2062                "%s        loss period: %7.3f %7.3f %7.3f %7.3f\n" 
    2063                "%s        jitter     : %7.3f %7.3f %7.3f %7.3f%s", 
     2061               "%s              (msec)    min     avg     max     last    dev\n" 
     2062               "%s        loss period: %7.3f %7.3f %7.3f %7.3f %7.3f\n" 
     2063               "%s        jitter     : %7.3f %7.3f %7.3f %7.3f %7.3f%s", 
    20642064               indent, info.stream_info[i].fmt.pt, 
    20652065               last_update, 
     
    20792079               indent, indent, 
    20802080               stat.rx.loss_period.min / 1000.0,  
    2081                stat.rx.loss_period.avg / 1000.0,  
     2081               stat.rx.loss_period.mean / 1000.0,  
    20822082               stat.rx.loss_period.max / 1000.0, 
    20832083               stat.rx.loss_period.last / 1000.0, 
     2084               pj_math_stat_get_stddev(&stat.rx.loss_period) / 1000.0, 
    20842085               indent, 
    20852086               stat.rx.jitter.min / 1000.0, 
    2086                stat.rx.jitter.avg / 1000.0, 
     2087               stat.rx.jitter.mean / 1000.0, 
    20872088               stat.rx.jitter.max / 1000.0, 
    20882089               stat.rx.jitter.last / 1000.0, 
     2090               pj_math_stat_get_stddev(&stat.rx.jitter) / 1000.0, 
    20892091               "" 
    20902092               ); 
     
    21152117               "%s        total %spkt %sB (%sB +IP hdr) @avg %sbps/%sbps\n" 
    21162118               "%s        pkt loss=%d (%3.1f%%), dup=%d (%3.1f%%), reorder=%d (%3.1f%%)\n" 
    2117                "%s              (msec)    min     avg     max     last\n" 
    2118                "%s        loss period: %7.3f %7.3f %7.3f %7.3f\n" 
    2119                "%s        jitter     : %7.3f %7.3f %7.3f %7.3f%s", 
     2119               "%s              (msec)    min     avg     max     last    dev \n" 
     2120               "%s        loss period: %7.3f %7.3f %7.3f %7.3f %7.3f\n" 
     2121               "%s        jitter     : %7.3f %7.3f %7.3f %7.3f %7.3f%s", 
    21202122               indent, 
    21212123               info.stream_info[i].tx_pt, 
     
    21412143               indent, indent, 
    21422144               stat.tx.loss_period.min / 1000.0,  
    2143                stat.tx.loss_period.avg / 1000.0,  
     2145               stat.tx.loss_period.mean / 1000.0,  
    21442146               stat.tx.loss_period.max / 1000.0, 
    21452147               stat.tx.loss_period.last / 1000.0, 
     2148               pj_math_stat_get_stddev(&stat.tx.loss_period) / 1000.0, 
    21462149               indent, 
    21472150               stat.tx.jitter.min / 1000.0, 
    2148                stat.tx.jitter.avg / 1000.0, 
     2151               stat.tx.jitter.mean / 1000.0, 
    21492152               stat.tx.jitter.max / 1000.0, 
    21502153               stat.tx.jitter.last / 1000.0, 
     2154               pj_math_stat_get_stddev(&stat.tx.jitter) / 1000.0, 
    21512155               "" 
    21522156               ); 
     
    21622166 
    21632167        len = pj_ansi_snprintf(p, end-p, 
    2164                "%s    RTT msec       : %7.3f %7.3f %7.3f %7.3f",  
     2168               "%s    RTT msec       : %7.3f %7.3f %7.3f %7.3f %7.3f",  
    21652169               indent, 
    21662170               stat.rtt.min / 1000.0, 
    2167                stat.rtt.avg / 1000.0, 
     2171               stat.rtt.mean / 1000.0, 
    21682172               stat.rtt.max / 1000.0, 
    2169                stat.rtt.last / 1000.0 
     2173               stat.rtt.last / 1000.0, 
     2174               pj_math_stat_get_stddev(&stat.rtt) / 1000.0 
    21702175               ); 
    21712176        if (len < 1 || len > end-p) { 
Note: See TracChangeset for help on using the changeset viewer.