Home
last modified time | relevance | path

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

/frameworks/av/media/extractors/mp3/
DVBRISeeker.cpp96 size_t totalEntrySize = numEntries * entrySize; in CreateFromSource() local
97 uint8_t *buffer = new (std::nothrow) uint8_t[totalEntrySize]; in CreateFromSource()
99 ALOGW("Couldn't allocate %zu bytes", totalEntrySize); in CreateFromSource()
104 n = source->readAt(pos + sizeof(vbriHeader), buffer, totalEntrySize); in CreateFromSource()
105 if (n < (ssize_t)totalEntrySize) { in CreateFromSource()