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

  /external/chromium_org/media/base/android/
media_decoder_job.h 160 // timestamp is smaller than |preroll_timestamp_|, don't render it.
161 // TODO(qinmin): Comparing access unit's timestamp with |preroll_timestamp_|
163 base::TimeDelta preroll_timestamp_; member in class:media::MediaDecoderJob
167 // BeginPrerolling(). If false, |preroll_timestamp_| has been reached.
168 // TODO(qinmin): Comparing access unit's timestamp with |preroll_timestamp_|
media_source_player.cc 462 preroll_timestamp_ = current_time;
464 audio_decoder_job_->BeginPrerolling(preroll_timestamp_);
466 video_decoder_job_->BeginPrerolling(preroll_timestamp_);
796 audio_decoder_job_->BeginPrerolling(preroll_timestamp_);
865 video_decoder_job_->BeginPrerolling(preroll_timestamp_);
media_source_player.h 260 base::TimeDelta preroll_timestamp_; member in class:media::MediaSourcePlayer
media_decoder_job.cc 135 preroll_timestamp_ = preroll_timestamp;
355 // |preroll_timestamp_| is not accurate due to data reordering and possible
360 bool render_output = unit.timestamp >= preroll_timestamp_ &&
media_source_player_unittest.cc 182 return player_.preroll_timestamp_;
    [all...]
  /external/chromium_org/media/filters/
video_renderer_impl.h 228 base::TimeDelta preroll_timestamp_; member in class:media::VideoRendererImpl
video_renderer_impl.cc 145 preroll_timestamp_ = time;
405 if (state_ == kPrerolling && preroll_timestamp_ != kNoTimestamp() &&
406 frame->GetTimestamp() <= preroll_timestamp_) {
audio_renderer_impl.h 161 // |preroll_timestamp_|. This can only return true while
248 base::TimeDelta preroll_timestamp_; member in class:media::AudioRendererImpl
audio_renderer_impl.cc 222 preroll_timestamp_ = time;
412 preroll_timestamp_ - buffer->timestamp();
521 (buffer->timestamp() + buffer->duration()) < preroll_timestamp_;

Completed in 139 milliseconds