Searched defs: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;
1234 if (session->framesOut) {
1235 size_t fr = session->framesOut;
1244 (session->framesOut - fr) * session->outChannelCount * sizeof(int16_t));
1245 session->framesOut -= fr;
1338 if (session->outBufSize < session->framesOut + session->frameCount) {
1340 session->outBufSize = session->framesOut + session->frameCount;
1344 session->framesOut
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.cpp6416 size_t framesOut = activeTrack->mSink.frameCount; local
6417 LOG_ALWAYS_FATAL_IF((status == OK) != (framesOut > 0));
6427 if (framesOut == 0 || framesIn == 0) {
6431 // Don't allow framesOut to be larger than what is possible with resampling
6435 framesOut = min(framesOut,
6439 framesOut = activeTrack->mRecordBufferConverter->convert(
6440 activeTrack->mSink.raw, activeTrack->mResamplerBufferProvider, framesOut);
6442 if (framesOut > 0 && (overrun == OVERRUN_UNKNOWN)) {
6447 if (framesOut >
[all...]

Completed in 681 milliseconds