Searched refs:VideoDecoder (Results 1 - 25 of 82) sorted by path

1234

/external/chromium_org/chrome/test/ppapi/
H A Dppapi_browsertest.cc1268 TEST_PPAPI_NACL(VideoDecoder)
/external/chromium_org/content/renderer/media/
H A Drtc_video_decoder.h40 // which VDA::Client methods run on. webrtc::VideoDecoder methods run on WebRTC
45 : NON_EXPORTED_BASE(public webrtc::VideoDecoder),
56 // webrtc::VideoDecoder implementation.
H A Drtc_video_decoder_factory.cc24 webrtc::VideoDecoder* RTCVideoDecoderFactory::CreateVideoDecoder(
33 webrtc::VideoDecoder* decoder) {
H A Drtc_video_decoder_factory.h15 class VideoDecoder;
34 virtual webrtc::VideoDecoder* CreateVideoDecoder(webrtc::VideoCodecType type)
39 virtual void DestroyVideoDecoder(webrtc::VideoDecoder* decoder) OVERRIDE;
/external/chromium_org/content/renderer/pepper/
H A Dvideo_decoder_shim.cc82 // DecoderImpl runs the underlying VideoDecoder on the media thread, receiving
99 void OnDecodeComplete(uint32_t decode_id, media::VideoDecoder::Status status);
105 scoped_ptr<media::VideoDecoder> decoder_;
112 // VideoDecoder returns pictures without information about the decode buffer
176 media::VideoDecoder::kAborted,
236 media::VideoDecoder::Status status) {
242 case media::VideoDecoder::kOk:
243 case media::VideoDecoder::kAborted:
246 case media::VideoDecoder::kDecodeError:
/external/chromium_org/content/test/ppapi/
H A Dppapi_browsertest.cc146 TEST_PPAPI_OUT_OF_PROCESS(VideoDecoder)
/external/chromium_org/media/base/
H A Dmock_filters.h76 class MockVideoDecoder : public VideoDecoder {
81 // VideoDecoder implementation.
H A Dvideo_decoder.cc11 VideoDecoder::VideoDecoder() {} function in class:media::VideoDecoder
13 VideoDecoder::~VideoDecoder() {}
15 bool VideoDecoder::NeedsBitstreamConversion() const {
19 bool VideoDecoder::CanReadWithoutStalling() const {
23 int VideoDecoder::GetMaxDecodeRequests() const {
H A Dvideo_decoder.h22 class MEDIA_EXPORT VideoDecoder { class in namespace:media
24 // Status codes for decode operations on VideoDecoder.
25 // TODO(rileya): Now that both AudioDecoder and VideoDecoder Status enums
34 // Callback for VideoDecoder to return a decoded frame whenever it becomes
43 VideoDecoder();
49 virtual ~VideoDecoder();
54 // Initializes a VideoDecoder with the given |config|, executing the
59 // 1) The VideoDecoder will be reinitialized if it was initialized before.
62 // 3) No VideoDecoder calls should be made before |status_cb| is executed.
93 // Note: No VideoDecoder call
[all...]
H A Dvideo_renderer.h18 class VideoDecoder;
/external/chromium_org/media/blink/
H A Dwebmediaplayer_impl.cc854 ScopedVector<VideoDecoder> video_decoders;
/external/chromium_org/media/cast/receiver/
H A Dcast_receiver_impl.cc171 video_decoder_.reset(new VideoDecoder(cast_environment_, video_codec_));
H A Dcast_receiver_impl.h20 class VideoDecoder;
80 // VideoDecoder::DecodeFrame().
114 scoped_ptr<VideoDecoder> video_decoder_;
H A Dvideo_decoder.cc29 class VideoDecoder::ImplBase
30 : public base::RefCountedThreadSafe<VideoDecoder::ImplBase> {
92 class VideoDecoder::Vp8Impl : public VideoDecoder::ImplBase {
173 class VideoDecoder::FakeImpl : public VideoDecoder::ImplBase {
215 VideoDecoder::VideoDecoder( function in class:media::cast::VideoDecoder
238 VideoDecoder::~VideoDecoder() {}
[all...]
H A Dvideo_decoder.h20 class VideoDecoder { class in namespace:media::cast
30 VideoDecoder(const scoped_refptr<CastEnvironment>& cast_environment,
32 virtual ~VideoDecoder();
57 DISALLOW_COPY_AND_ASSIGN(VideoDecoder);
H A Dvideo_decoder_unittest.cc55 video_decoder_.reset(new VideoDecoder(cast_environment_, GetParam()));
69 // Prepare a simulated EncodedFrame to feed into the VideoDecoder.
103 base::Bind(&VideoDecoder::DecodeFrame,
150 scoped_ptr<VideoDecoder> video_decoder_;
/external/chromium_org/media/filters/
H A Ddecoder_stream_traits.h18 class VideoDecoder;
49 typedef VideoDecoder DecoderType;
H A Ddecrypting_video_decoder.h23 // Decryptor-based VideoDecoder implementation that can decrypt and decode
27 class MEDIA_EXPORT DecryptingVideoDecoder : public VideoDecoder {
34 // VideoDecoder implementation.
H A Ddecrypting_video_decoder_unittest.cc116 VideoDecoder::Status status) {
150 DecodeAndExpect(encrypted_buffer_, VideoDecoder::kOk);
160 DecodeAndExpect(DecoderBuffer::CreateEOSBuffer(), VideoDecoder::kOk);
226 MOCK_METHOD1(DecodeDone, void(VideoDecoder::Status));
306 DecodeAndExpect(encrypted_buffer_, VideoDecoder::kDecodeError);
309 DecodeAndExpect(encrypted_buffer_, VideoDecoder::kDecodeError);
329 EXPECT_CALL(*this, DecodeDone(VideoDecoder::kOk));
344 EXPECT_CALL(*this, DecodeDone(VideoDecoder::kOk));
373 EXPECT_CALL(*this, DecodeDone(VideoDecoder::kAborted));
383 EXPECT_CALL(*this, DecodeDone(VideoDecoder
[all...]
H A Dfake_video_decoder.h31 class FakeVideoDecoder : public VideoDecoder {
38 // VideoDecoder implementation.
H A Dfake_video_decoder_unittest.cc37 last_decode_status_(VideoDecoder::kOk),
67 // Callback for VideoDecoder::Decode().
68 void DecodeDone(VideoDecoder::Status status) {
94 ASSERT_EQ(VideoDecoder::kOk, last_decode_status_);
99 ASSERT_EQ(VideoDecoder::kOk, last_decode_status_);
104 ASSERT_EQ(VideoDecoder::kAborted, last_decode_status_);
162 // Callback for VideoDecoder::Reset().
218 VideoDecoder::Status last_decode_status_;
H A Dffmpeg_video_decoder.h28 class MEDIA_EXPORT FFmpegVideoDecoder : public VideoDecoder {
38 // VideoDecoder implementation.
H A Dffmpeg_video_decoder_unittest.cc100 EXPECT_EQ(VideoDecoder::kOk, DecodeSingleFrame(i_frame_buffer_));
107 EXPECT_EQ(VideoDecoder::kOk, DecodeSingleFrame(end_of_stream_buffer_));
117 VideoDecoder::Status DecodeMultipleFrames(const InputBuffers& input_buffers) {
121 VideoDecoder::Status status = Decode(*iter);
123 case VideoDecoder::kOk:
125 case VideoDecoder::kAborted:
127 case VideoDecoder::kDecodeError:
128 case VideoDecoder::kDecryptError:
133 return VideoDecoder::kOk;
140 VideoDecoder
[all...]
H A Dgpu_video_decoder.h37 : public VideoDecoder,
43 // VideoDecoder implementation.
H A Dpipeline_integration_test_base.cc241 ScopedVector<VideoDecoder> video_decoders;

Completed in 6052 milliseconds

1234