OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pending_frames_
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/media/filters/
video_frame_scheduler_impl.cc
32
pending_frames_
.push(PendingFrame(frame, wall_ticks, done_cb));
37
pending_frames_
= PendingFrameQueue();
47
if (
pending_frames_
.empty()) {
55
pending_frames_
.top().wall_ticks - tick_clock_->NowTicks(),
65
while (!
pending_frames_
.empty() &&
pending_frames_
.top().wall_ticks <= now) {
66
expired_frames.push_back(
pending_frames_
.top());
67
pending_frames_
.pop();
video_frame_scheduler_impl.h
67
PendingFrameQueue
pending_frames_
;
member in class:media::VideoFrameSchedulerImpl
/external/chromium_org/content/browser/compositor/
onscreen_display_client.cc
26
pending_frames_
(0),
47
if (
pending_frames_
>= display_->GetMaxFramesPending()) {
70
pending_frames_
++;
74
pending_frames_
--;
75
if ((
pending_frames_
< display_->GetMaxFramesPending()) && deferred_draw_) {
onscreen_display_client.h
58
int
pending_frames_
;
member in class:content::OnscreenDisplayClient
/external/chromium_org/content/common/gpu/media/
android_video_encode_accelerator.cc
177
(num_buffers_at_codec_ > 0 || !
pending_frames_
.empty())) {
187
(num_buffers_at_codec_ == 0 &&
pending_frames_
.empty())) {
213
pending_frames_
.push(MakeTuple(frame, force_keyframe, base::Time::Now()));
264
if (!client_ptr_factory_->GetWeakPtr() ||
pending_frames_
.empty())
279
const PendingFrames::value_type& input =
pending_frames_
.front();
329
pending_frames_
.pop();
android_video_encode_accelerator.h
91
PendingFrames
pending_frames_
;
member in class:content::AndroidVideoEncodeAccelerator
/external/chromium_org/remoting/host/
video_scheduler.cc
64
pending_frames_
(0),
281
if (
pending_frames_
>= kMaxPendingFrames || capture_pending_) {
289
pending_frames_
++;
290
DCHECK_LE(
pending_frames_
, kMaxPendingFrames);
308
pending_frames_
--;
309
DCHECK_GE(
pending_frames_
, 0);
video_scheduler.h
206
int
pending_frames_
;
member in class:remoting::VideoScheduler
/external/chromium_org/content/renderer/pepper/
video_decoder_shim.cc
470
// the host from sending buffers that will cause
pending_frames_
to grow.
471
if (
pending_frames_
.empty())
508
pending_frames_
.push(linked_ptr<PendingFrame>(frame.release()));
516
while (!
pending_frames_
.empty() && !available_textures_.empty()) {
517
const linked_ptr<PendingFrame>& frame =
pending_frames_
.front();
539
pending_frames_
.pop();
544
if (
pending_frames_
.empty()) {
560
while (!
pending_frames_
.empty())
561
pending_frames_
.pop();
video_decoder_shim.h
118
PendingFrameQueue
pending_frames_
;
member in class:content::VideoDecoderShim
Completed in 284 milliseconds