HomeSort by relevance Sort by last modified time
    Searched full:psshsize (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libstagefright/
NuMediaExtractor.cpp 276 size_t psshsize; local
277 if (meta->findData(kKeyPssh, &type, &pssh, &psshsize)) {
278 sp<ABuffer> buf = new ABuffer(psshsize);
279 memcpy(buf->data(), pssh, psshsize);
MPEG4Extractor.cpp 563 uint64_t psshsize = 0; local
565 psshsize += 20 + mPssh[i].datalen;
567 if (psshsize > 0 && psshsize <= UINT32_MAX) {
568 char *buf = (char*)malloc(psshsize);
579 mFileMetaData->setData(kKeyPssh, 'pssh', buf, psshsize);
    [all...]

Completed in 2142 milliseconds