OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:section_length
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/media/mp2t/
ts_section_pat.cc
30
int
section_length
;
local
40
RCHECK(bit_reader->ReadBits(12, &
section_length
));
41
RCHECK(
section_length
>= 5);
42
RCHECK(
section_length
<= 1021);
49
section_length
-= 5;
61
RCHECK((
section_length
% 4) == 0);
62
int pmt_pid_count = (
section_length
- 4) / 4;
ts_section_psi.cc
86
int
section_length
=
local
89
if (
section_length
>= 1021)
91
int psi_length =
section_length
+ 3;
ts_section_pmt.cc
29
int
section_length
;
local
39
RCHECK(bit_reader->ReadBits(12, &
section_length
));
56
RCHECK(
section_length
<= 1021);
81
int pid_map_end_marker = section_start_marker -
section_length
+ 4;
/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
...]
/external/libnfc-nxp/src/
phDnldNfc.c
334
uint32_t
section_length
;
member in struct:section_hdr
[
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
661
//
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;
Completed in 57 milliseconds