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

  /external/chromium_org/media/formats/mp2t/
es_parser_h264.cc 70 off_t start_code_size; local
72 es, size, &start_code_offset, &start_code_size);
76 if (!start_code_found || start_code_offset + start_code_size >= size)
83 if (es[start_code_offset + start_code_size] == H264NALU::kAUD)
88 *stream_pos += start_code_size;
es_parser_h264_unittest.cc 76 off_t start_code_size = 0; local
79 &relative_offset, &start_code_size);
92 offset += start_code_size;
  /external/chromium_org/media/filters/
h264_parser.cc 176 off_t* offset, off_t* start_code_size) {
184 *start_code_size = 3;
190 ++(*start_code_size);
206 *start_code_size = 0;
210 bool H264Parser::LocateNALU(off_t* nalu_size, off_t* start_code_size) {
246 *start_code_size = annexb_start_code_size;
254 off_t* start_code_size) {
256 return FindStartCode(data, data_size, offset, start_code_size);
263 if (!FindStartCode(start, bytes_left, offset, start_code_size))
269 const uint8* start_code_end = start_code + *start_code_size;
329 off_t start_code_size; local
    [all...]
h264_parser.h 328 // code) and |*start_code_size| is set to 0.
334 // - |*start_code_size| is either 0, 3 or 4.
336 off_t* offset, off_t* start_code_size);
400 // - the size in bytes of the start code is returned in |*start_code_size|.
401 bool LocateNALU(off_t* nalu_size, off_t* start_code_size);
407 off_t* offset, off_t* start_code_size);

Completed in 2743 milliseconds