Home
last modified time | relevance | path

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

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