HomeSort by relevance Sort by last modified time
    Searched full:section_length (Results 1 - 4 of 4) sorted by null

  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 254 unsigned section_length = br->getBits(12); local
255 ALOGV(" section_length = %u", section_length);
256 CHECK_EQ(section_length & 0xc00, 0u);
257 CHECK_LE(section_length, 1021u);
283 size_t infoBytesRemaining = section_length - 9 - program_info_length - 4;
1003 unsigned section_length = br->getBits(12); local
1004 ALOGV(" section_length = %u", section_length);
1005 CHECK_EQ(section_length & 0xc00, 0u)
    [all...]
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 720 // 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;
  /frameworks/av/media/libstagefright/wifi-display/source/
TSPacketizer.cpp 649 // section_length = 0x00d
712 // section_length = 0x???
746 *ptr++ = 0x00; // section_length to be filled in below.
798 size_t section_length = ptr - (crcDataStart + 3) + 4 /* CRC */; local
800 crcDataStart[1] = 0xb0 | (section_length >> 8);
801 crcDataStart[2] = section_length & 0xff;
  /external/libnfc-nxp/src/
phDnldNfc.c 334 uint32_t section_length; member in struct:section_hdr
    [all...]

Completed in 355 milliseconds