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

  /frameworks/av/media/libstagefright/
NuMediaExtractor.cpp 249 size_t psshsize; local
250 if (meta->findData(kKeyPssh, &type, &pssh, &psshsize)) {
251 sp<ABuffer> buf = new ABuffer(psshsize);
252 memcpy(buf->data(), pssh, psshsize);
MPEG4Extractor.cpp 513 int psshsize = 0; local
515 psshsize += 20 + mPssh[i].datalen;
517 if (psshsize) {
518 char *buf = (char*)malloc(psshsize);
525 mFileMetaData->setData(kKeyPssh, 'pssh', buf, psshsize);
    [all...]

Completed in 32 milliseconds