Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "base/basictypes.h" | |
| 6 #include "base/memory/scoped_ptr.h" | |
| 7 #include "webkit/media/crypto/ppapi/cdm_video_decoder.h" | |
| 8 #include "webkit/media/crypto/ppapi/content_decryption_module.h" | |
| 9 | |
| 10 #if defined(CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER) | |
| 11 #include "webkit/media/crypto/ppapi/fake_cdm_video_decoder.h" | |
| 12 #endif | |
| 13 | |
| 14 #if defined(CLEAR_KEY_CDM_USE_FFMPEG_DECODER) | |
| 15 #include "webkit/media/crypto/ppapi/ffmpeg_cdm_video_decoder.h" | |
| 16 #endif | |
| 17 | |
| 18 #if defined(CLEAR_KEY_CDM_USE_LIBVPX_DECODER) | |
| 19 #include "webkit/media/crypto/ppapi/libvpx_cdm_video_decoder.h" | |
| 20 #endif | |
| 21 | |
| 22 namespace webkit_media { | |
| 23 | |
| 24 scoped_ptr<CdmVideoDecoder> CreateVideoDecoder( | |
| 25 cdm::Allocator* allocator, | |
| 26 const cdm::VideoDecoderConfig& config) { | |
| 27 scoped_ptr<CdmVideoDecoder> video_decoder; | |
| 28 #if defined(CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER) | |
|
xhwang
2012/11/20 06:46:20
I wonder if we can use getenv() to make this a run
Tom Finegan
2012/12/03 23:48:55
The only problem I see with doing it the way you s
xhwang
2012/12/04 01:31:03
I don't think it an issue to linkin all decoders f
ddorwin
2012/12/04 04:22:37
Right, we're not worried about size since we never
| |
| 29 video_decoder.reset(new FakeCdmVideoDecoder(allocator)); | |
| 30 | |
| 31 if (!video_decoder->Initialize(config)) | |
| 32 video_decoder.reset(); | |
| 33 #else | |
| 34 | |
| 35 #if defined(CLEAR_KEY_CDM_USE_LIBVPX_DECODER) | |
| 36 if (config.codec == cdm::VideoDecoderConfig::kCodecVp8) { | |
| 37 video_decoder.reset(new LibvpxCdmVideoDecoder(allocator)); | |
| 38 | |
| 39 if (!video_decoder->Initialize(config)) | |
| 40 video_decoder.reset(); | |
| 41 | |
| 42 return video_decoder.Pass(); | |
| 43 } | |
| 44 #endif | |
| 45 | |
| 46 #if defined(CLEAR_KEY_CDM_USE_FFMPEG_DECODER) | |
| 47 video_decoder.reset(new FFmpegCdmVideoDecoder(allocator)); | |
| 48 | |
| 49 if (!video_decoder->Initialize(config)) | |
| 50 video_decoder.reset(); | |
| 51 #endif | |
| 52 | |
| 53 #endif // CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER | |
| 54 | |
| 55 return video_decoder.Pass(); | |
| 56 } | |
| 57 | |
| 58 } // namespace webkit_media | |
| OLD | NEW |