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

  /frameworks/av/media/libstagefright/include/
HTTPBase.h 70 List<BandwidthEntry> mBandwidthHistory;
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 80 List<BandwidthEntry> mBandwidthHistory;
110 mBandwidthHistory.push_back(entry);
125 while (mBandwidthHistory.size() > kMinBandwidthHistoryItems) {
126 List<BandwidthEntry>::iterator it = mBandwidthHistory.begin();
135 mBandwidthHistory.erase(mBandwidthHistory.begin());
143 if (mBandwidthHistory.size() < 2) {
167 if (mBandwidthHistory.size() >= kShortTermBandwidthItems) {
168 List<BandwidthEntry>::iterator it = --mBandwidthHistory.end();
203 size_t histSize = mBandwidthHistory.size()
    [all...]

Completed in 145 milliseconds