Home
last modified time | relevance | path

Searched refs:start_code_size (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/media/formats/mp2t/
Des_parser_h264.cc98 off_t start_code_size; in FindAUD() local
100 es, size, &start_code_offset, &start_code_size); in FindAUD()
104 if (!start_code_found || start_code_offset + start_code_size >= size) in FindAUD()
111 if (es[start_code_offset + start_code_size] == H264NALU::kAUD) in FindAUD()
116 *stream_pos += start_code_size; in FindAUD()
Des_parser_h264_unittest.cc62 off_t start_code_size = 0; in GetAccessUnits() local
65 &relative_offset, &start_code_size); in GetAccessUnits()
78 offset += start_code_size; in GetAccessUnits()
/external/chromium_org/media/filters/
Dh264_parser.cc160 off_t* offset, off_t* start_code_size) { in FindStartCode() argument
168 *start_code_size = 3; in FindStartCode()
174 ++(*start_code_size); in FindStartCode()
190 *start_code_size = 0; in FindStartCode()
194 bool H264Parser::LocateNALU(off_t* nalu_size, off_t* start_code_size) { in LocateNALU() argument
228 *start_code_size = annexb_start_code_size; in LocateNALU()
275 off_t start_code_size; in AdvanceToNextNALU() local
277 if (!LocateNALU(&nalu_size_with_start_code, &start_code_size)) { in AdvanceToNextNALU()
283 nalu->data = stream_ + start_code_size; in AdvanceToNextNALU()
284 nalu->size = nalu_size_with_start_code - start_code_size; in AdvanceToNextNALU()
Dh264_parser.h293 off_t* offset, off_t* start_code_size);
354 bool LocateNALU(off_t* nalu_size, off_t* start_code_size);