• Home
  • Raw
  • Download

Lines Matching refs:frameCount

794         int32_t* out, size_t frameCount, int32_t* temp, int32_t* aux)  in volumeRampStereo()  argument
821 } while (--frameCount); in volumeRampStereo()
829 } while (--frameCount); in volumeRampStereo()
837 int32_t* out, size_t frameCount, int32_t* temp, int32_t* aux) in volumeStereo() argument
853 } while (--frameCount); in volumeStereo()
861 } while (--frameCount); in volumeStereo()
866 int32_t* out, size_t frameCount, int32_t* temp __unused, int32_t* aux) in track__16BitsStereo() argument
895 } while (--frameCount); in track__16BitsStereo()
916 } while (--frameCount); in track__16BitsStereo()
935 } while (--frameCount); in track__16BitsStereo()
951 } while (--frameCount); in track__16BitsStereo()
958 int32_t* out, size_t frameCount, int32_t* temp __unused, int32_t* aux) in track__16BitsMono() argument
985 } while (--frameCount); in track__16BitsMono()
1004 } while (--frameCount); in track__16BitsMono()
1024 } while (--frameCount); in track__16BitsMono()
1039 } while (--frameCount); in track__16BitsMono()
1064 t->buffer.frameCount = outFrames; in process__nop()
1067 outFrames -= t->buffer.frameCount; in process__nop()
1088 t->buffer.frameCount = mFrameCount; in process__genericNoResampling()
1090 t->frameCount = t->buffer.frameCount; in process__genericNoResampling()
1097 const size_t frameCount = std::min((size_t)BLOCKSIZE, mFrameCount - numFrames); in process__genericNoResampling() local
1105 for (int outFrames = frameCount; outFrames > 0; ) { in process__genericNoResampling()
1111 size_t inFrames = (t->frameCount > outFrames)?outFrames:t->frameCount; in process__genericNoResampling()
1114 outTemp + (frameCount - outFrames) * t->mMixerChannelCount, in process__genericNoResampling()
1116 t->frameCount -= inFrames; in process__genericNoResampling()
1122 if (t->frameCount == 0 && outFrames) { in process__genericNoResampling()
1124 t->buffer.frameCount = (mFrameCount - numFrames) - in process__genericNoResampling()
1125 (frameCount - outFrames); in process__genericNoResampling()
1131 t->frameCount = t->buffer.frameCount; in process__genericNoResampling()
1138 frameCount * t1->mMixerChannelCount); in process__genericNoResampling()
1141 + frameCount * t1->mMixerChannelCount in process__genericNoResampling()
1143 numFrames += frameCount; in process__genericNoResampling()
1184 t->buffer.frameCount = numFrames - outFrames; in process__genericResampling()
1192 outTemp + outFrames * t->mMixerChannelCount, t->buffer.frameCount, in process__genericResampling()
1195 outFrames += t->buffer.frameCount; in process__genericResampling()
1225 b.frameCount = numFrames; in process__oneTrack16BitsStereoNoResampling()
1245 size_t outFrames = b.frameCount; in process__oneTrack16BitsStereoNoResampling()
1287 numFrames -= b.frameCount; in process__oneTrack16BitsStereoNoResampling()
1308 static void volumeRampMulti(uint32_t channels, TO* out, size_t frameCount, in volumeRampMulti() argument
1313 volumeRampMulti<MIXTYPE, 1>(out, frameCount, in, aux, vol, volinc, vola, volainc); in volumeRampMulti()
1316 volumeRampMulti<MIXTYPE, 2>(out, frameCount, in, aux, vol, volinc, vola, volainc); in volumeRampMulti()
1320 frameCount, in, aux, vol, volinc, vola, volainc); in volumeRampMulti()
1324 frameCount, in, aux, vol, volinc, vola, volainc); in volumeRampMulti()
1328 frameCount, in, aux, vol, volinc, vola, volainc); in volumeRampMulti()
1332 frameCount, in, aux, vol, volinc, vola, volainc); in volumeRampMulti()
1336 frameCount, in, aux, vol, volinc, vola, volainc); in volumeRampMulti()
1340 frameCount, in, aux, vol, volinc, vola, volainc); in volumeRampMulti()
1352 static void volumeMulti(uint32_t channels, TO* out, size_t frameCount, in volumeMulti() argument
1357 volumeMulti<MIXTYPE, 1>(out, frameCount, in, aux, vol, vola); in volumeMulti()
1360 volumeMulti<MIXTYPE, 2>(out, frameCount, in, aux, vol, vola); in volumeMulti()
1363 volumeMulti<MIXTYPE_MONOVOL(MIXTYPE), 3>(out, frameCount, in, aux, vol, vola); in volumeMulti()
1366 volumeMulti<MIXTYPE_MONOVOL(MIXTYPE), 4>(out, frameCount, in, aux, vol, vola); in volumeMulti()
1369 volumeMulti<MIXTYPE_MONOVOL(MIXTYPE), 5>(out, frameCount, in, aux, vol, vola); in volumeMulti()
1372 volumeMulti<MIXTYPE_MONOVOL(MIXTYPE), 6>(out, frameCount, in, aux, vol, vola); in volumeMulti()
1375 volumeMulti<MIXTYPE_MONOVOL(MIXTYPE), 7>(out, frameCount, in, aux, vol, vola); in volumeMulti()
1378 volumeMulti<MIXTYPE_MONOVOL(MIXTYPE), 8>(out, frameCount, in, aux, vol, vola); in volumeMulti()
1456 b.frameCount = numFrames; in process__noResampleOneTrack()
1471 const size_t outFrames = b.frameCount; in process__noResampleOneTrack()
1479 numFrames -= b.frameCount; in process__noResampleOneTrack()
1531 TO* out, size_t frameCount, TO* temp __unused, TA* aux) in track__NoResample() argument
1537 out, frameCount, in, aux, needsRamp()); in track__NoResample()
1541 in += (MIXTYPE == MIXTYPE_MONOEXPAND) ? frameCount : frameCount * mMixerChannelCount; in track__NoResample()