Home
last modified time | relevance | path

Searched refs:mBandwidth (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/libeffects/testlibs/
DAudioPeakingFilter.cpp84 mBandwidth = cents - 1; in setBandwidth()
92 mBandwidth >> BANDWIDTH_PRECISION_BITS in commit()
97 mBandwidth << (32 - BANDWIDTH_PRECISION_BITS) in commit()
105 int32_t halfBW = (((mBandwidth + 1) / 2) << 15) / 1200; in getBandRange()
DAudioPeakingFilter.h76 uint32_t getBandwidth() const { return mBandwidth + 1; } in getBandwidth()
132 uint32_t mBandwidth; variable
/frameworks/av/media/libstagefright/httplive/
DLiveSession.cpp960 if (a->mBandwidth < b->mBandwidth) { in SortByBandwidth()
962 } else if (a->mBandwidth == b->mBandwidth) { in SortByBandwidth()
1064 CHECK(meta->findInt32("bandwidth", (int32_t *)&item.mBandwidth)); in onMasterPlaylistFetched()
1089 initialBandwidth = mBandwidthItems[0].mBandwidth; in onMasterPlaylistFetched()
1094 if (mBandwidthItems.itemAt(i).mBandwidth == initialBandwidth) { in onMasterPlaylistFetched()
1103 item.mBandwidth = 0; in onMasterPlaylistFetched()
1310 (float)mBandwidthItems.itemAt(targetBWIndex).mBandwidth in getAbortThreshold()
1311 / ((float)mBandwidthItems.itemAt(targetBWIndex).mBandwidth in getAbortThreshold()
1312 + (float)mBandwidthItems.itemAt(currentBWIndex).mBandwidth in getAbortThreshold()
1318 mBandwidthItems.itemAt(currentBWIndex).mBandwidth, in getAbortThreshold()
[all …]
DLiveSession.h150 unsigned long mBandwidth; member
/frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
DSurfaceCompositionTest.java90 status.putDouble(KEY_SURFACE_COMPOSITION_BANDWITH, score.mBandwidth / in testSurfaceCompositionPerformance()
DSurfaceCompositionMeasuringActivity.java108 double mBandwidth; field in SurfaceCompositionMeasuringActivity.CompositorScore
113 "Bandwidth: " + getReadableMemory((long)mBandwidth) + "/s"; in toString()
133 score.mBandwidth = score.mSurfaces * mTargetFPS * mWidth * mHeight * 4.0; in measureCompositionScore()