Searched refs:psshsize (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/
H A DNuMediaExtractor.cpp251 size_t psshsize; local
252 if (meta->findData(kKeyPssh, &type, &pssh, &psshsize)) {
253 sp<ABuffer> buf = new ABuffer(psshsize);
254 memcpy(buf->data(), pssh, psshsize);
H A DMPEG4Extractor.cpp532 uint64_t psshsize = 0; local
534 psshsize += 20 + mPssh[i].datalen;
536 if (psshsize > 0 && psshsize <= UINT32_MAX) {
537 char *buf = (char*)malloc(psshsize);
544 mFileMetaData->setData(kKeyPssh, 'pssh', buf, psshsize);

Completed in 71 milliseconds