Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/
DWAVExtractor.cpp451 size_t maxBytesToRead = in read() local
459 if (maxBytesToRead > maxBytesAvailable) { in read()
460 maxBytesToRead = maxBytesAvailable; in read()
466 if (maxBytesToRead > 1024) { in read()
467 maxBytesToRead = 1024; in read()
469 maxBytesToRead = (maxBytesToRead / 65) * 65; in read()
473 maxBytesToRead -= maxBytesToRead % inputUnitFrameSize; in read()
478 maxBytesToRead); in read()
/frameworks/av/media/libstagefright/httplive/
DHTTPDownloader.cpp166 size_t maxBytesToRead = bufferRemaining; in fetchBlock() local
172 } else if (bytesLeftInRange < (int64_t)maxBytesToRead) { in fetchBlock()
173 maxBytesToRead = bytesLeftInRange; in fetchBlock()
185 maxBytesToRead); in fetchBlock()