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

/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp122 size_t framesOut; // number of frames in output buffer member in struct:preproc_session_s
951 session->framesOut = 0;
1074 session->framesOut = 0;
1191 if (session->framesOut) {
1192 size_t fr = session->framesOut;
1201 (session->framesOut - fr) * session->outChannelCount * sizeof(int16_t));
1202 session->framesOut -= fr;
1288 if (session->outBufSize < session->framesOut + session->frameCount) {
1289 session->outBufSize = session->framesOut + session->frameCount;
1302 session->outBuf + session->framesOut * sessio
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.cpp5892 size_t framesOut = activeTrack->mSink.frameCount; local
5893 LOG_ALWAYS_FATAL_IF((status == OK) != (framesOut > 0));
5903 if (framesOut == 0 || framesIn == 0) {
5907 // Don't allow framesOut to be larger than what is possible with resampling
5911 framesOut = min(framesOut,
5915 framesOut = activeTrack->mRecordBufferConverter->convert(
5916 activeTrack->mSink.raw, activeTrack->mResamplerBufferProvider, framesOut);
5918 if (framesOut > 0 && (overrun == OVERRUN_UNKNOWN)) {
5923 if (framesOut >
[all...]

Completed in 105 milliseconds