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

  /external/chromium_org/media/base/
stream_parser.cc 47 // |last_decode_timestamp| tracks the lower bound, if any, that all candidate
49 // initialize |last_decode_timestamp| to the decode timestamp of the last
51 base::TimeDelta last_decode_timestamp = kNoTimestamp(); local
53 last_decode_timestamp = merged_buffers->back()->GetDecodeTimestamp();
59 // |last_decode_timestamp|, which means either an input buffer wasn't
84 if (last_decode_timestamp != kNoTimestamp() &&
85 ts < last_decode_timestamp)
102 // remember its decode timestamp as |last_decode_timestamp| now that it is
107 last_decode_timestamp = buffer->GetDecodeTimestamp();
  /external/chromium_org/media/filters/
frame_processor.cc 206 base::TimeDelta last_decode_timestamp = local
207 track_buffer->last_decode_timestamp();
208 if (last_decode_timestamp != kNoTimestamp()) {
209 base::TimeDelta dts_delta = decode_timestamp - last_decode_timestamp;
frame_processor_base.h 29 base::TimeDelta last_decode_timestamp() const { function in class:media::MseTrackBuffer

Completed in 572 milliseconds