HomeSort by relevance Sort by last modified time
    Searched defs:mTotalTransferTimeUs (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libstagefright/include/
HTTPBase.h 72 int64_t mTotalTransferTimeUs;
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 85 int64_t mTotalTransferTimeUs;
95 mTotalTransferTimeUs(0),
108 mTotalTransferTimeUs += delayUs;
117 int64_t bandwidthHistoryWindowUs = mTotalTransferTimeUs * 9 / 10;
130 mTotalTransferTimeUs - it->mDelayUs < bandwidthHistoryWindowUs) {
133 mTotalTransferTimeUs -= it->mDelayUs;
158 *bandwidthBps = ((double)mTotalTransferBytes * 8E6 / mTotalTransferTimeUs);
    [all...]

Completed in 97 milliseconds