Home
last modified time | relevance | path

Searched refs:mEstimatedFramesUntilEOF (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libnbaio/
DLibsndfileSource.cpp29 mEstimatedFramesUntilEOF(sfinfo.frames), in LibsndfileSource()
43 return !mLooping && mEstimatedFramesUntilEOF > 0 ? mEstimatedFramesUntilEOF : SSIZE_MAX; in availableToRead()
70 if (actual >= mEstimatedFramesUntilEOF) { in read()
71 mEstimatedFramesUntilEOF = 0; in read()
73 mEstimatedFramesUntilEOF -= actual; in read()
/frameworks/av/include/media/nbaio/
DLibsndfileSource.h51 sf_count_t mEstimatedFramesUntilEOF; variable