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

  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2Drm.cpp 28 Vector<DrmUUID> NuPlayer2Drm::parsePSSH(const void *pssh, size_t psshsize)
42 const uint8_t *data = (const uint8_t*)pssh;
47 ALOGE("ParsePSSH: invalid PSSH data");
59 ALOGE("ParsePSSH: invalid PSSH data");
68 ALOGE("ParsePSSH: invalid PSSH data");
90 Vector<DrmUUID> NuPlayer2Drm::getSupportedDrmSchemes(const void *pssh, size_t psshsize)
92 Vector<DrmUUID> psshDRMs = parsePSSH(pssh, psshsize);
108 sp<ABuffer> NuPlayer2Drm::retrieveDrmInfo(const void *pssh, uint32_t psshsize)
112 // 1) PSSH bytes
114 buf.write(reinterpret_cast<const char *>(pssh), psshsize)
138 std::ostringstream pssh, drmInfo; local
    [all...]
NuPlayer2Drm.h 80 static Vector<DrmUUID> parsePSSH(const void *pssh, size_t psshsize);
81 static Vector<DrmUUID> getSupportedDrmSchemes(const void *pssh, size_t psshsize);
86 static sp<ABuffer> retrieveDrmInfo(const void *pssh, uint32_t psshsize);
  /frameworks/av/drm/mediadrm/plugins/clearkey/default/tests/
InitDataParserUnittest.cpp 79 uint8_t pssh[52] = { local
81 'p', 's', 's', 'h', // PSSH
91 initData.appendArray(pssh, 52);
100 uint8_t pssh[84] = { local
102 'p', 's', 's', 'h', // PSSH
116 initData.appendArray(pssh, 84);
141 uint8_t pssh[16] = { local
148 initData.appendArray(pssh, 16);
164 uint8_t pssh[52] = { local
166 'p', 's', 's', 'h', // PSSH
182 uint8_t pssh[52] = { local
200 uint8_t pssh[52] = { local
218 uint8_t pssh[52] = { local
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDrm.h 78 static Vector<DrmUUID> parsePSSH(const void *pssh, size_t psshsize);
79 static Vector<DrmUUID> getSupportedDrmSchemes(const void *pssh, size_t psshsize);
87 static void retrieveDrmInfo(const void *pssh, size_t psshsize, Parcel *parcel);
NuPlayerDrm.cpp 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);
    [all...]
GenericSource.cpp 1694 const void *pssh; local
    [all...]
  /frameworks/av/media/libstagefright/
NuMediaExtractor.cpp 289 const void *pssh; local
291 if (meta->findData(kKeyPssh, &type, &pssh, &psshsize)) {
293 memcpy(buf->data(), pssh, psshsize);
294 (*format)->setBuffer("pssh", buf);
  /frameworks/av/media/extractors/mp4/
MPEG4Extractor.cpp 713 // copy pssh data into file metadata
1375 PsshInfo pssh; local
    [all...]

Completed in 422 milliseconds