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);
212 void NuPlayerDrm::retrieveDrmInfo(const void *pssh, size_t psshsize, Parcel *parcel)
214 // 1) PSSH bytes
216 parcel->writeByteArray(psshsize, (const uint8_t*)pssh);
218 ALOGV("retrieveDrmInfo: MEDIA_DRM_INFO PSSH: size: %zu %s", psshsize,
219 DrmUUID::arrayToHex((uint8_t*)pssh, psshsize).string());
222 Vector<DrmUUID> supportedDRMs = getSupportedDrmSchemes(pssh, psshsize);