Home
last modified time | relevance | path

Searched refs:pending_decode_requests_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/media/filters/
Dfake_video_decoder_unittest.cc38 pending_decode_requests_(0), in FakeVideoDecoderTest()
69 DCHECK_GT(pending_decode_requests_, 0); in DecodeDone()
70 --pending_decode_requests_; in DecodeDone()
90 EXPECT_GT(pending_decode_requests_, 0); in ExpectReadResult()
93 EXPECT_EQ(0, pending_decode_requests_); in ExpectReadResult()
98 EXPECT_EQ(0, pending_decode_requests_); in ExpectReadResult()
103 EXPECT_EQ(0, pending_decode_requests_); in ExpectReadResult()
123 ++pending_decode_requests_; in Decode()
135 } while (!last_decoded_frame_ && pending_decode_requests_ == 0); in ReadOneFrame()
205 DCHECK_EQ(pending_decode_requests_, 0); in Stop()
[all …]
Ddecoder_stream.cc54 pending_decode_requests_(0), in DecoderStream()
238 static_cast<int>(ready_outputs_.size()) + pending_decode_requests_; in CanDecodeMore()
289 DCHECK_LT(pending_decode_requests_, GetMaxDecodeRequests()); in Decode()
297 ++pending_decode_requests_; in Decode()
319 DCHECK_GT(pending_decode_requests_, 0); in OnDecodeDone()
321 --pending_decode_requests_; in OnDecodeDone()
367 if (state_ == STATE_FLUSHING_DECODER && !pending_decode_requests_) in OnDecodeDone()
498 DCHECK_EQ(pending_decode_requests_, 0); in ReinitializeDecoder()
Ddecoder_stream.h202 int pending_decode_requests_; variable