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

/frameworks/av/media/libstagefright/httplive/
H A DHTTPDownloader.cpp165 size_t maxBytesToRead = bufferRemaining; local
168 if (bytesLeftInRange < (int64_t)maxBytesToRead) {
169 maxBytesToRead = bytesLeftInRange;
181 maxBytesToRead);
/frameworks/av/media/libstagefright/
H A DWAVExtractor.cpp429 // make sure that maxBytesToRead is multiple of 3, in 24-bit case
430 size_t maxBytesToRead = local
438 if (maxBytesToRead > maxBytesAvailable) {
439 maxBytesToRead = maxBytesAvailable;
445 if (maxBytesToRead > 1024) {
446 maxBytesToRead = 1024;
448 maxBytesToRead = (maxBytesToRead / 65) * 65;
452 maxBytesToRead -= maxBytesToRead
[all...]

Completed in 547 milliseconds