Home | History | Annotate | Download | only in external_clear_key

Lines Matching defs:video_decoder

25   scoped_ptr<CdmVideoDecoder> video_decoder;
27 video_decoder.reset(new FakeCdmVideoDecoder(host));
29 if (!video_decoder->Initialize(config))
30 video_decoder.reset();
36 video_decoder.reset(new LibvpxCdmVideoDecoder(host));
38 if (!video_decoder->Initialize(config))
39 video_decoder.reset();
41 return video_decoder.Pass();
46 video_decoder.reset(new FFmpegCdmVideoDecoder(host));
48 if (!video_decoder->Initialize(config))
49 video_decoder.reset();
54 return video_decoder.Pass();