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

  /external/chromium_org/media/filters/
fake_video_decoder.cc 33 DCHECK(decode_cb_.IsNull()) << "No reinitialization during pending decode.";
53 DCHECK(decode_cb_.IsNull()) << "Overlapping decodes are not supported.";
58 decode_cb_.SetCallback(BindToCurrentLoop(base::Bind(
62 decode_cb_.RunOrHold(kOk, VideoFrame::CreateEmptyFrame());
73 decode_cb_.RunOrHold(kNotEnoughData, scoped_refptr<VideoFrame>());
80 decode_cb_.RunOrHold(kOk, frame);
89 if (!decode_cb_.IsNull())
100 if (!init_cb_.IsNull() || !decode_cb_.IsNull() || !reset_cb_.IsNull())
113 decode_cb_.HoldCallback();
128 DCHECK(decode_cb_.IsNull())
    [all...]
decrypting_video_decoder.cc 41 DCHECK(decode_cb_.is_null());
72 CHECK(decode_cb_.is_null()) << "Overlapping decodes are not supported.";
74 decode_cb_ = BindToCurrentLoop(decode_cb);
77 base::ResetAndReturn(&decode_cb_).Run(kDecodeError, NULL);
83 base::ResetAndReturn(&decode_cb_).Run(kOk, VideoFrame::CreateEmptyFrame());
112 DCHECK(!decode_cb_.is_null());
117 DCHECK(!decode_cb_.is_null());
119 base::ResetAndReturn(&decode_cb_).Run(kOk, NULL);
122 DCHECK(decode_cb_.is_null());
144 if (!decode_cb_.is_null()
    [all...]
ffmpeg_video_decoder.cc 135 DCHECK(decode_cb_.is_null());
160 CHECK(decode_cb_.is_null()) << "Overlapping decodes are not supported.";
161 decode_cb_ = BindToCurrentLoop(decode_cb);
164 base::ResetAndReturn(&decode_cb_).Run(kDecodeError, NULL);
170 base::ResetAndReturn(&decode_cb_).Run(kOk, VideoFrame::CreateEmptyFrame());
183 if (!decode_cb_.is_null())
190 DCHECK(decode_cb_.is_null());
204 if (!decode_cb_.is_null()) {
205 base::ResetAndReturn(&decode_cb_).Run(kOk, NULL);
228 DCHECK(!decode_cb_.is_null())
    [all...]
vpx_video_decoder.cc 81 DCHECK(decode_cb_.is_null());
164 CHECK(decode_cb_.is_null()) << "Overlapping decodes are not supported.";
166 decode_cb_ = BindToCurrentLoop(decode_cb);
169 base::ResetAndReturn(&decode_cb_).Run(kDecodeError, NULL);
175 base::ResetAndReturn(&decode_cb_).Run(kOk, VideoFrame::CreateEmptyFrame());
188 if (!decode_cb_.is_null())
201 if (!decode_cb_.is_null()) {
202 base::ResetAndReturn(&decode_cb_).Run(kOk, NULL);
221 DCHECK(!decode_cb_.is_null());
227 base::ResetAndReturn(&decode_cb_).Run(kOk, VideoFrame::CreateEmptyFrame())
    [all...]
decrypting_video_decoder.h 88 DecodeCB decode_cb_; member in class:media::DecryptingVideoDecoder
fake_video_decoder.h 83 CallbackHolder<DecodeCB> decode_cb_; member in class:media::FakeVideoDecoder
ffmpeg_video_decoder.h 76 DecodeCB decode_cb_; member in class:media::FFmpegVideoDecoder
vpx_video_decoder.h 75 DecodeCB decode_cb_; member in class:media::VpxVideoDecoder
ffmpeg_video_decoder_unittest.cc 50 decode_cb_(base::Bind(&FFmpegVideoDecoderTest::FrameReady,
220 decoder_->Decode(buffer, decode_cb_);
231 VideoDecoder::DecodeCB decode_cb_; member in class:media::FFmpegVideoDecoderTest

Completed in 117 milliseconds