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

  /frameworks/av/media/libstagefright/
NuMediaExtractor.cpp 248 const void *pssh; local
250 if (meta->findData(kKeyPssh, &type, &pssh, &psshsize)) {
252 memcpy(buf->data(), pssh, psshsize);
253 (*format)->setBuffer("pssh", buf);
MPEG4Extractor.cpp 512 // copy pssh data into file metadata
525 mFileMetaData->setData(kKeyPssh, 'pssh', buf, psshsize);
989 PsshInfo pssh; local
991 if (mDataSource->readAt(data_offset + 4, &pssh.uuid, 16) < 16) {
999 pssh.datalen = ntohl(psshdatalen);
1000 ALOGV("pssh data size: %d", pssh.datalen);
1001 if (pssh.datalen + 20 > chunk_size) {
1002 // pssh data length exceeds size of containing box
1006 pssh.data = new uint8_t[pssh.datalen]
    [all...]

Completed in 184 milliseconds