Home | History | Annotate | Download | only in nuplayer

Lines Matching refs:pssh

89 Vector<DrmUUID> NuPlayerDrm::parsePSSH(const void *pssh, size_t psshsize)
103 const uint8_t *data = (const uint8_t*)pssh;
108 ALOGE("ParsePSSH: invalid PSSH data");
120 ALOGE("ParsePSSH: invalid PSSH data");
129 ALOGE("ParsePSSH: invalid PSSH data");
151 Vector<DrmUUID> NuPlayerDrm::getSupportedDrmSchemes(const void *pssh, size_t psshsize)
153 Vector<DrmUUID> psshDRMs = parsePSSH(pssh, psshsize);
208 void NuPlayerDrm::retrieveDrmInfo(const void *pssh, size_t psshsize, Parcel *parcel)
210 // 1) PSSH bytes
212 parcel->writeByteArray(psshsize, (const uint8_t*)pssh);
214 ALOGV("retrieveDrmInfo: MEDIA_DRM_INFO PSSH: size: %zu %s", psshsize,
215 DrmUUID::arrayToHex((uint8_t*)pssh, psshsize).string());
218 Vector<DrmUUID> supportedDRMs = getSupportedDrmSchemes(pssh, psshsize);