Home | History | Annotate | Download | only in audioflinger

Lines Matching refs:mSampleRate

36     mReadBuffer(NULL), mReadBufferState(-1), mFormat(Format_Invalid), mSampleRate(0),
103 mSampleRate = 0;
106 mSampleRate = Format_sampleRate(mFormat);
110 dumpState->mSampleRate = mSampleRate;
130 if (frameCount > 0 && mSampleRate > 0) {
135 mPeriodNs = (frameCount * 1000000000LL) / mSampleRate; // 1.00
136 mUnderrunNs = (frameCount * 1750000000LL) / mSampleRate; // 1.75
137 mOverrunNs = (frameCount * 500000000LL) / mSampleRate; // 0.50
138 mForceNs = (frameCount * 950000000LL) / mSampleRate; // 0.95
139 mWarmupNsMin = (frameCount * 750000000LL) / mSampleRate; // 0.75
140 mWarmupNsMax = (frameCount * 1250000000LL) / mSampleRate; // 1.25