Searched refs:section_length (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/
H A DMPEG2TSWriter.cpp679 // section_length = 0x00d
731 // section_length = 0x???
767 size_t section_length = 5 * mSources.size() + 4 + 9; local
768 buffer->data()[6] |= section_length >> 8;
769 buffer->data()[7] = section_length & 0xff;
/frameworks/av/media/libstagefright/wifi-display/source/
H A DTSPacketizer.cpp661 // section_length = 0x00d
724 // section_length = 0x???
758 *ptr++ = 0x00; // section_length to be filled in below.
810 size_t section_length = ptr - (crcDataStart + 3) + 4 /* CRC */; local
812 crcDataStart[1] = 0xb0 | (section_length >> 8);
813 crcDataStart[2] = section_length & 0xff;
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp473 unsigned section_length = br->getBits(12); local
474 ALOGV(" section_length = %u", section_length);
505 size_t infoBytesRemaining = section_length - 9 - program_info_length - 4;
1725 unsigned section_length = br->getBits(12); local
1726 ALOGV(" section_length = %u", section_length);
1735 size_t numProgramBytes = (section_length - 5 /* header */ - 4 /* crc */);
2238 // Return true if section_syntax_indicator says no section follows the field section_length.

Completed in 604 milliseconds