Searched defs:esds (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp1298 sp<ABuffer> esds = new ABuffer(csd->size() + 25); local
1300 uint8_t *ptr = esds->data();
1323 return esds;
1415 sp<ABuffer> esds = MakeMPEGVideoESDS(csd); local
1417 kKeyESDS, kTypeESDS, esds->data(), esds->size());
1624 sp<ABuffer> esds = MakeMPEGVideoESDS(csd); local
1627 esds->data(), esds->size());
/frameworks/av/media/extractors/mkv/
H A DMatroskaExtractor.cpp1069 uint8_t *esds = new uint8_t[esdsSize]; local
1072 esds[idx++] = 0x03;
1073 storeSize(esds, idx, esdsSize1);
1074 esds[idx++] = 0x00; // ES_ID
1075 esds[idx++] = 0x00; // ES_ID
1076 esds[idx++] = 0x00; // streamDependenceFlag, URL_Flag, OCRstreamFlag
1077 esds[idx++] = 0x04;
1078 storeSize(esds, idx, esdsSize2);
1079 esds[idx++] = isAudio ? 0x40 // Audio ISO/IEC 14496-3
1082 esds[id
[all...]
/frameworks/av/media/libstagefright/
H A DUtils.cpp389 static void parseMpeg2ProfileLevelFromEsds(ESDS &esds, sp<AMessage> &format) { argument
390 // esds seems to only contain the profile for MPEG-2
392 if (esds.getObjectTypeIndication(&objType) == OK) {
955 ESDS esds((const char *)data, size);
956 if (esds.InitCheck() != (status_t)OK) {
962 esds.getCodecSpecificInfo(
980 parseMpeg2ProfileLevelFromEsds(esds, msg);
989 if (esds.getBitRate(&maxBitrate, &avgBitrate) == OK) {
1173 static void reassembleESDS(const sp<ABuffer> &csd0, char *esds) { argument
1175 esds[
[all...]

Completed in 107 milliseconds