Changeset 1674
- Timestamp:
- Jan 9, 2008 10:11:24 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r1671 r1674 1899 1899 good_number(bytes, stat.rx.bytes), 1900 1900 good_number(ipbytes, stat.rx.bytes + stat.rx.pkt * 40), 1901 good_number(avg_bps, stat.rx.bytes * 8 * 1000 / PJ_TIME_VAL_MSEC(media_duration)),1902 good_number(avg_ipbps, ( stat.rx.bytes + stat.rx.pkt * 40) * 8 * 1000 / PJ_TIME_VAL_MSEC(media_duration)),1901 good_number(avg_bps, (pj_int32_t)((pj_int64_t)stat.rx.bytes * 8 * 1000 / PJ_TIME_VAL_MSEC(media_duration))), 1902 good_number(avg_ipbps, (pj_int32_t)(((pj_int64_t)stat.rx.bytes + stat.rx.pkt * 40) * 8 * 1000 / PJ_TIME_VAL_MSEC(media_duration))), 1903 1903 indent, 1904 1904 stat.rx.loss, … … 1959 1959 good_number(bytes, stat.tx.bytes), 1960 1960 good_number(ipbytes, stat.tx.bytes + stat.tx.pkt * 40), 1961 good_number(avg_bps, stat.tx.bytes * 8 * 1000 / PJ_TIME_VAL_MSEC(media_duration)),1962 good_number(avg_ipbps, ( stat.tx.bytes + stat.tx.pkt * 40) * 8 * 1000 / PJ_TIME_VAL_MSEC(media_duration)),1961 good_number(avg_bps, (pj_int32_t)((pj_int64_t)stat.tx.bytes * 8 * 1000 / PJ_TIME_VAL_MSEC(media_duration))), 1962 good_number(avg_ipbps, (pj_int32_t)(((pj_int64_t)stat.tx.bytes + stat.tx.pkt * 40) * 8 * 1000 / PJ_TIME_VAL_MSEC(media_duration))), 1963 1963 1964 1964 indent,
Note: See TracChangeset
for help on using the changeset viewer.