Changeset 1961 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
- Timestamp:
- May 17, 2008 2:54:18 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r1931 r1961 2059 2059 "%s total %spkt %sB (%sB +IP hdr) @avg=%sbps/%sbps\n" 2060 2060 "%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", 2064 2064 indent, info.stream_info[i].fmt.pt, 2065 2065 last_update, … … 2079 2079 indent, indent, 2080 2080 stat.rx.loss_period.min / 1000.0, 2081 stat.rx.loss_period. avg/ 1000.0,2081 stat.rx.loss_period.mean / 1000.0, 2082 2082 stat.rx.loss_period.max / 1000.0, 2083 2083 stat.rx.loss_period.last / 1000.0, 2084 pj_math_stat_get_stddev(&stat.rx.loss_period) / 1000.0, 2084 2085 indent, 2085 2086 stat.rx.jitter.min / 1000.0, 2086 stat.rx.jitter. avg/ 1000.0,2087 stat.rx.jitter.mean / 1000.0, 2087 2088 stat.rx.jitter.max / 1000.0, 2088 2089 stat.rx.jitter.last / 1000.0, 2090 pj_math_stat_get_stddev(&stat.rx.jitter) / 1000.0, 2089 2091 "" 2090 2092 ); … … 2115 2117 "%s total %spkt %sB (%sB +IP hdr) @avg %sbps/%sbps\n" 2116 2118 "%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", 2120 2122 indent, 2121 2123 info.stream_info[i].tx_pt, … … 2141 2143 indent, indent, 2142 2144 stat.tx.loss_period.min / 1000.0, 2143 stat.tx.loss_period. avg/ 1000.0,2145 stat.tx.loss_period.mean / 1000.0, 2144 2146 stat.tx.loss_period.max / 1000.0, 2145 2147 stat.tx.loss_period.last / 1000.0, 2148 pj_math_stat_get_stddev(&stat.tx.loss_period) / 1000.0, 2146 2149 indent, 2147 2150 stat.tx.jitter.min / 1000.0, 2148 stat.tx.jitter. avg/ 1000.0,2151 stat.tx.jitter.mean / 1000.0, 2149 2152 stat.tx.jitter.max / 1000.0, 2150 2153 stat.tx.jitter.last / 1000.0, 2154 pj_math_stat_get_stddev(&stat.tx.jitter) / 1000.0, 2151 2155 "" 2152 2156 ); … … 2162 2166 2163 2167 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", 2165 2169 indent, 2166 2170 stat.rtt.min / 1000.0, 2167 stat.rtt. avg/ 1000.0,2171 stat.rtt.mean / 1000.0, 2168 2172 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 2170 2175 ); 2171 2176 if (len < 1 || len > end-p) {
Note: See TracChangeset
for help on using the changeset viewer.