Searched refs:esds (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/
H A DUtils.cpp418 static void parseMpeg2ProfileLevelFromEsds(ESDS &esds, sp<AMessage> &format) { argument
419 // esds seems to only contain the profile for MPEG-2
421 if (esds.getObjectTypeIndication(&objType) == OK) {
966 ESDS esds((const char *)data, size);
967 if (esds.InitCheck() != (status_t)OK) {
973 esds.getCodecSpecificInfo(
991 parseMpeg2ProfileLevelFromEsds(esds, msg);
1000 if (esds.getBitRate(&maxBitrate, &avgBitrate) == OK) {
1184 static void reassembleESDS(const sp<ABuffer> &csd0, char *esds) { argument
1186 esds[
[all...]
H A DMPEG2TSWriter.cpp162 ESDS esds((const char *)data, size);
163 CHECK_EQ(esds.InitCheck(), (status_t)OK);
167 esds.getCodecSpecificInfo(
H A DMPEG4Extractor.cpp1873 ESDS esds(&buffer[4], chunk_data_size - 4);
1876 if (esds.getObjectTypeIndication(&objectTypeIndication) == OK) {
3481 ESDS esds(esds_data, esds_size);
3484 if (esds.getObjectTypeIndication(&objectTypeIndication) != OK) {
3507 if (esds.getCodecSpecificInfo(
H A DMPEG4Writer.cpp1862 ESDS esds(data, size);
1863 if (esds.getCodecSpecificInfo(&data, &size) == OK &&
3408 mOwner->beginBox("esds");
3447 mOwner->endBox(); // esds
3457 mOwner->beginBox("esds");
3495 mOwner->endBox(); // esds
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp952 uint8_t *esds = new uint8_t[esdsSize]; local
955 esds[idx++] = 0x03;
956 storeSize(esds, idx, esdsSize1);
957 esds[idx++] = 0x00; // ES_ID
958 esds[idx++] = 0x00; // ES_ID
959 esds[idx++] = 0x00; // streamDependenceFlag, URL_Flag, OCRstreamFlag
960 esds[idx++] = 0x04;
961 storeSize(esds, idx, esdsSize2);
962 esds[idx++] = isAudio ? 0x40 // Audio ISO/IEC 14496-3
965 esds[id
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp1289 sp<ABuffer> esds = new ABuffer(csd->size() + 25); local
1291 uint8_t *ptr = esds->data();
1314 return esds;
1406 sp<ABuffer> esds = MakeMPEGVideoESDS(csd); local
1408 kKeyESDS, kTypeESDS, esds->data(), esds->size());
1615 sp<ABuffer> esds = MakeMPEGVideoESDS(csd); local
1618 esds->data(), esds->size());

Completed in 279 milliseconds