Searched defs:chunkType (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/timedtext/
H A DTextDescriptions.cpp98 uint32_t chunkType = U32_AT(tmpData + 4); local
106 switch(chunkType) {
291 uint32_t chunkType = U32_AT(data + 4); local
302 switch(chunkType) {
/frameworks/av/media/libstagefright/
H A DFragmentedMP4Extractor.cpp342 uint32_t chunkType = ntohl(hdr[1]); local
365 MakeFourCCString(chunkType, chunkstring);
367 switch (chunkType) {
H A DAVIExtractor.cpp724 ssize_t trackIndex, Track::Kind kind, uint32_t chunkType) {
725 uint32_t chunkBase = chunkType & 0xffff;
753 uint8_t hi = chunkType >> 24;
754 uint8_t lo = (chunkType >> 16) & 0xff;
782 uint32_t chunkType = U32_AT(data); local
784 uint8_t hi = chunkType >> 24;
785 uint8_t lo = (chunkType >> 16) & 0xff;
799 if (!IsCorrectChunkType(-1, track->mKind, chunkType)) {
1135 uint32_t chunkType = U32_AT(tmp); local
1137 if (!IsCorrectChunkType(trackIndex, track.mKind, chunkType)) {
723 IsCorrectChunkType( ssize_t trackIndex, Track::Kind kind, uint32_t chunkType) argument
[all...]
H A DMPEG4Extractor.cpp570 PathAdder(Vector<uint32_t> *path, uint32_t chunkType) argument
572 mPath->push(chunkType);
2382 uint32_t chunkType = ntohl(hdr[1]); local
2404 switch (chunkType) {
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp897 unsigned chunkType = data[offset + 3]; local
902 if (chunkType == 0xb0) {
914 CHECK_EQ(chunkType, 0xb5);
921 CHECK_LE(chunkType, 0x1f);
928 CHECK((chunkType & 0xf0) == 0x20);
940 if (chunkType == 0xb3 || chunkType == 0xb6) {
972 if (chunkType == 0xb6) {
995 } else if (chunkType != 0xb3) {
H A DMPEG2PSExtractor.cpp201 unsigned chunkType = mBuffer->data()[3]; local
205 switch (chunkType) {

Completed in 117 milliseconds