OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Preroll
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/media/filters/
video_renderer_impl.cc
127
void VideoRendererImpl::
Preroll
(base::TimeDelta time,
213
// Since we had an initial
Preroll
(), we consider ourself flushed, because we
383
// Abort
preroll
early for a NULL frame because we won't get more frames.
384
// A new
preroll
will be requested after this one completes so there is no
audio_renderer_impl.cc
210
void AudioRendererImpl::
Preroll
(base::TimeDelta time,
326
// The "!preroll_aborted_" is a hack. If
preroll
is aborted, then we
329
// number of bytes that need to be buffered for
preroll
to complete)
330
// does not increase due to an aborted
preroll
.
410
// Trim off any additional time before the
preroll
timestamp.
video_renderer_impl_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
...]
audio_renderer_impl_unittest.cc
162
void
Preroll
() {
163
Preroll
(0, PIPELINE_OK);
166
void
Preroll
(int timestamp_ms, PipelineStatus expected) {
167
SCOPED_TRACE(base::StringPrintf("
Preroll
(%d, %d)", timestamp_ms, expected));
174
renderer_->
Preroll
(timestamp, event.GetPipelineStatusCB());
202
Preroll
();
335
Preroll
();
448
TEST_F(AudioRendererImplTest,
Preroll
) {
450
Preroll
();
455
Preroll
();
[
all
...]
Completed in 289 milliseconds