HomeSort by relevance Sort by last modified time
    Searched refs:program_info_length (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libstagefright/wifi-display/source/
TSPacketizer.cpp 734 // program_info_length = 0x???
769 size_t program_info_length = 0; local
771 program_info_length += mProgramInfoDescriptors.itemAt(i)->size();
774 CHECK_LT(program_info_length, 0x400);
775 *ptr++ = 0xf0 | (program_info_length >> 8);
776 *ptr++ = (program_info_length & 0xff);
  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 272 unsigned program_info_length = br->getBits(12); local
273 ALOGV(" program_info_length = %u", program_info_length);
274 CHECK_EQ(program_info_length & 0xc00, 0u);
276 br->skipBits(program_info_length * 8); // skip descriptors
283 size_t infoBytesRemaining = section_length - 9 - program_info_length - 4;
    [all...]

Completed in 470 milliseconds