Searched defs:sectionLength (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/camera/
H A DCameraMetadata.cpp718 size_t sectionLength = 0; local
733 if (section == NULL || sectionLength < strLength) {
736 sectionLength = strLength;
753 const char *nameTagName = name + sectionLength + 1; // x.y.z -> z
754 if (sectionLength + 1 >= nameLength) {
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp2216 unsigned sectionLength = U16_AT(mBuffer->data() + 1) & 0xfff; local
2217 return mBuffer->size() >= sectionLength + 3;
2243 unsigned sectionLength = U16_AT(data + 1) & 0xfff; local
2244 ALOGV("sectionLength %u, skip %u", sectionLength, mSkipBytes);
2247 if(sectionLength < mSkipBytes) {
2254 sectionLength -= mSkipBytes;
2257 for(unsigned i = 0; i < sectionLength + 4 /* crc */; i++) {

Completed in 88 milliseconds