Searched refs:descriptor_length (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2PSExtractor.cpp326 unsigned descriptor_length = br.getBits(8); local
329 descriptor_tag, descriptor_length);
331 if (offset + 2 + descriptor_length > program_stream_info_length) {
335 br.skipBits(8 * descriptor_length);
337 offset += 2 + descriptor_length;
H A DATSParser.cpp432 unsigned descriptor_length = br->getBits(8); local
433 ALOGV(" len = %u", descriptor_length);
436 if (descriptor_length > infoLength) {
439 if (descriptor_tag == 9 && descriptor_length >= 4) {
445 br->data(), br->data() + descriptor_length - 4);
448 infoLength -= descriptor_length;
449 br->skipBits(descriptor_length * 8);

Completed in 487 milliseconds