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

  /frameworks/av/media/libstagefright/
HTTPBase.cpp 35 mTotalTransferTimeUs(0),
51 mTotalTransferTimeUs += delayUs;
57 mTotalTransferTimeUs -= entry->mDelayUs;
68 (mTotalTransferBytes * 8E3 / mTotalTransferTimeUs);
87 *bandwidth_bps = ((double)mTotalTransferBytes * 8E6 / mTotalTransferTimeUs);
  /frameworks/av/media/libstagefright/include/
HTTPBase.h 77 int64_t mTotalTransferTimeUs;
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 86 int64_t mTotalTransferTimeUs;
96 mTotalTransferTimeUs(0),
109 mTotalTransferTimeUs += delayUs;
118 int64_t bandwidthHistoryWindowUs = mTotalTransferTimeUs * 9 / 10;
131 mTotalTransferTimeUs - it->mDelayUs < bandwidthHistoryWindowUs) {
134 mTotalTransferTimeUs -= it->mDelayUs;
159 *bandwidthBps = ((double)mTotalTransferBytes * 8E6 / mTotalTransferTimeUs);
    [all...]

Completed in 48 milliseconds