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

/frameworks/av/media/libstagefright/
H A DUtils.cpp412 static void parseMpeg2ProfileLevelFromEsds(ESDS &esds, sp<AMessage> &format) { argument
413 // esds seems to only contain the profile for MPEG-2
415 if (esds.getObjectTypeIndication(&objType) == OK) {
926 ESDS esds((const char *)data, size);
927 if (esds.InitCheck() != (status_t)OK) {
933 esds.getCodecSpecificInfo(
951 parseMpeg2ProfileLevelFromEsds(esds, msg);
960 if (esds.getBitRate(&maxBitrate, &avgBitrate) == OK) {
1134 static void reassembleESDS(const sp<ABuffer> &csd0, char *esds) { argument
1136 esds[
1389 char esds[csd0size + 31]; local
[all...]
H A DMPEG2TSWriter.cpp163 ESDS esds((const char *)data, size);
164 CHECK_EQ(esds.InitCheck(), (status_t)OK);
168 esds.getCodecSpecificInfo(
H A DMPEG4Extractor.cpp1755 ESDS esds(&buffer[4], chunk_data_size - 4);
1758 if (esds.getObjectTypeIndication(&objectTypeIndication) == OK) {
3160 ESDS esds(esds_data, esds_size);
3163 if (esds.getObjectTypeIndication(&objectTypeIndication) != OK) {
3186 if (esds.getCodecSpecificInfo(
H A DMPEG4Writer.cpp1600 ESDS esds(data, size);
1601 if (esds.getCodecSpecificInfo(&data, &size) != OK) {
3023 mOwner->beginBox("esds");
3062 mOwner->endBox(); // esds
3068 mOwner->beginBox("esds");
3106 mOwner->endBox(); // esds
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp930 uint8_t *esds = new uint8_t[esdsSize]; local
933 esds[idx++] = 0x03;
934 storeSize(esds, idx, esdsSize1);
935 esds[idx++] = 0x00; // ES_ID
936 esds[idx++] = 0x00; // ES_ID
937 esds[idx++] = 0x00; // streamDependenceFlag, URL_Flag, OCRstreamFlag
938 esds[idx++] = 0x04;
939 storeSize(esds, idx, esdsSize2);
940 esds[idx++] = isAudio ? 0x40 // Audio ISO/IEC 14496-3
943 esds[id
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp1019 sp<ABuffer> esds = new ABuffer(csd->size() + 25); local
1021 uint8_t *ptr = esds->data();
1044 return esds;
1117 sp<ABuffer> esds = MakeMPEGVideoESDS(csd); local
1119 kKeyESDS, kTypeESDS, esds->data(), esds->size());
1321 sp<ABuffer> esds = MakeMPEGVideoESDS(csd); local
1324 esds->data(), esds->size());
/frameworks/av/cmds/stagefright/
H A Dsf2.cpp401 ESDS esds((const char *)data, size);
402 CHECK_EQ(esds.InitCheck(), (status_t)OK);
406 esds.getCodecSpecificInfo(

Completed in 1581 milliseconds