Searched refs:framesOut (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp123 size_t framesOut; // number of frames in output buffer member in struct:preproc_session_s
991 session->framesOut = 0;
1119 session->framesOut = 0;
1236 if (session->framesOut) {
1237 size_t fr = session->framesOut;
1246 (session->framesOut - fr) * session->outChannelCount * sizeof(int16_t));
1247 session->framesOut -= fr;
1340 if (session->outBufSize < session->framesOut + session->frameCount) {
1342 session->outBufSize = session->framesOut + session->frameCount;
1346 session->framesOut
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.cpp6125 size_t framesOut = activeTrack->mSink.frameCount; local
6126 LOG_ALWAYS_FATAL_IF((status == OK) != (framesOut > 0));
6136 if (framesOut == 0 || framesIn == 0) {
6140 // Don't allow framesOut to be larger than what is possible with resampling
6144 framesOut = min(framesOut,
6148 framesOut = activeTrack->mRecordBufferConverter->convert(
6149 activeTrack->mSink.raw, activeTrack->mResamplerBufferProvider, framesOut);
6151 if (framesOut > 0 && (overrun == OVERRUN_UNKNOWN)) {
6156 if (framesOut >
[all...]

Completed in 393 milliseconds