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

  /external/chromium_org/media/filters/
video_renderer_base.cc 124 void VideoRendererBase::Preroll(base::TimeDelta time,
196 // Since we had an initial Preroll(), we consider ourself flushed, because we
365 // Abort preroll early for a NULL frame because we won't get more frames.
366 // A new preroll will be requested after this one completes so there is no
audio_renderer_impl.cc 168 void AudioRendererImpl::Preroll(base::TimeDelta time,
290 // The "&& preroll_aborted_" is a hack. If preroll is aborted, then we
293 // number of bytes that need to be buffered for preroll to complete)
294 // does not increase due to an aborted preroll.
audio_renderer_impl_unittest.cc 153 void Preroll() {
154 Preroll(0, PIPELINE_OK);
157 void Preroll(int timestamp_ms, PipelineStatus expected) {
158 SCOPED_TRACE(base::StringPrintf("Preroll(%d, %d)", timestamp_ms, expected));
165 renderer_->Preroll(timestamp, event.GetPipelineStatusCB());
303 Preroll();
408 TEST_F(AudioRendererImplTest, Preroll) {
410 Preroll();
415 Preroll();
437 Preroll();
    [all...]
video_renderer_base_unittest.cc 111 Preroll(0, PIPELINE_OK);
145 void Preroll(int timestamp_ms, PipelineStatus expected) {
146 SCOPED_TRACE(base::StringPrintf("Preroll(%d, %d)", timestamp_ms, expected));
148 renderer_->Preroll(
445 // and deliver all the frames between the start and |duration|. The preroll
480 Preroll(kFrameDurationInMs * 6, PIPELINE_ERROR_DECODE);
490 Preroll(kFrameDurationInMs * 6, PIPELINE_OK);
501 Preroll(kFrameDurationInMs * 6 - 1, PIPELINE_OK);
512 Preroll(kFrameDurationInMs * 6 + 1, PIPELINE_OK);
523 Preroll(kFrameDurationInMs * 4, PIPELINE_OK)
    [all...]

Completed in 35 milliseconds