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

  /external/chromium_org/media/filters/
h264_parser.h 285 // code) and |*start_code_size| is set to 0.
291 // - |*start_code_size| is either 0, 3 or 4.
293 off_t* offset, off_t* start_code_size);
353 // - the size in bytes of the start code is returned in |*start_code_size|.
354 bool LocateNALU(off_t* nalu_size, off_t* start_code_size);
h264_parser.cc 160 off_t* offset, off_t* start_code_size) {
168 *start_code_size = 3;
174 ++(*start_code_size);
190 *start_code_size = 0;
194 bool H264Parser::LocateNALU(off_t* nalu_size, off_t* start_code_size) {
228 *start_code_size = annexb_start_code_size;
275 off_t start_code_size; local
277 if (!LocateNALU(&nalu_size_with_start_code, &start_code_size)) {
283 nalu->data = stream_ + start_code_size;
284 nalu->size = nalu_size_with_start_code - start_code_size;
    [all...]
  /external/chromium_org/media/formats/mp2t/
es_parser_h264.cc 98 off_t start_code_size; local
100 es, size, &start_code_offset, &start_code_size);
104 if (!start_code_found || start_code_offset + start_code_size >= size)
111 if (es[start_code_offset + start_code_size] == H264NALU::kAUD)
116 *stream_pos += start_code_size;
es_parser_h264_unittest.cc 62 off_t start_code_size = 0; local
65 &relative_offset, &start_code_size);
78 offset += start_code_size;

Completed in 230 milliseconds