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

/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp246 unsigned section_length = br->getBits(12); local
247 ALOGV(" section_length = %u", section_length);
248 CHECK_EQ(section_length & 0xc00, 0u);
249 CHECK_LE(section_length, 1021u);
275 size_t infoBytesRemaining = section_length - 9 - program_info_length - 4;
966 unsigned section_length = br->getBits(12); local
967 ALOGV(" section_length = %u", section_length);
968 CHECK_EQ(section_length
[all...]
/frameworks/av/media/libstagefright/wifi-display/source/
H A DTSPacketizer.cpp494 // section_length = 0x00d
557 // section_length = 0x???
590 *ptr++ = 0x00; // section_length to be filled in below.
629 size_t section_length = ptr - (crcDataStart + 3) + 4 /* CRC */; local
631 crcDataStart[1] = 0xb0 | (section_length >> 8);
632 crcDataStart[2] = section_length & 0xff;
/frameworks/av/media/libstagefright/
H A DMPEG2TSWriter.cpp720 // section_length = 0x00d
772 // section_length = 0x???
808 size_t section_length = 5 * mSources.size() + 4 + 9; local
809 buffer->data()[6] |= section_length >> 8;
810 buffer->data()[7] = section_length & 0xff;

Completed in 70 milliseconds