Home
last modified time | relevance | path

Searched refs:VideoDecoderVpx (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/remoting/codec/
Dvideo_decoder_vpx.cc46 scoped_ptr<VideoDecoderVpx> VideoDecoderVpx::CreateForVP8() { in CreateForVP8()
59 return scoped_ptr<VideoDecoderVpx>(); in CreateForVP8()
62 return scoped_ptr<VideoDecoderVpx>(new VideoDecoderVpx(codec.Pass())); in CreateForVP8()
66 scoped_ptr<VideoDecoderVpx> VideoDecoderVpx::CreateForVP9() { in CreateForVP9()
79 return scoped_ptr<VideoDecoderVpx>(); in CreateForVP9()
82 return scoped_ptr<VideoDecoderVpx>(new VideoDecoderVpx(codec.Pass())); in CreateForVP9()
85 VideoDecoderVpx::~VideoDecoderVpx() {} in ~VideoDecoderVpx()
87 void VideoDecoderVpx::Initialize(const webrtc::DesktopSize& screen_size) { in Initialize()
95 bool VideoDecoderVpx::DecodePacket(const VideoPacket& packet) { in DecodePacket()
150 void VideoDecoderVpx::Invalidate(const webrtc::DesktopSize& view_size, in Invalidate()
[all …]
Dvideo_decoder_vpx.h19 class VideoDecoderVpx : public VideoDecoder {
22 static scoped_ptr<VideoDecoderVpx> CreateForVP8();
23 static scoped_ptr<VideoDecoderVpx> CreateForVP9();
25 virtual ~VideoDecoderVpx();
40 explicit VideoDecoderVpx(ScopedVpxCodec codec);
64 DISALLOW_COPY_AND_ASSIGN(VideoDecoderVpx);
Dvideo_decoder_vpx_unittest.cc20 scoped_ptr<VideoDecoderVpx> decoder_;
23 decoder_(VideoDecoderVpx::CreateForVP8()) { in VideoDecoderVpxTest()
41 decoder_ = VideoDecoderVpx::CreateForVP8(); in VideoDecoderVp8Test()
49 decoder_ = VideoDecoderVpx::CreateForVP9(); in VideoDecoderVp9Test()
/external/chromium_org/remoting/client/
Dsoftware_video_renderer.cc154 decoder_ = VideoDecoderVpx::CreateForVP8(); in Initialize()
156 decoder_ = VideoDecoderVpx::CreateForVP9(); in Initialize()