OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chromecast/renderer/key_systems_cast.h" | 5 #include "chromecast/renderer/key_systems_cast.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "chromecast/media/base/key_systems_common.h" | 11 #include "chromecast/media/base/key_systems_common.h" |
12 #include "components/cdm/renderer/widevine_key_systems.h" | 12 #include "components/cdm/renderer/widevine_key_systems.h" |
13 #include "media/base/eme_constants.h" | 13 #include "media/base/eme_constants.h" |
14 | 14 |
15 #include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR. | 15 #include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR. |
16 | 16 |
17 namespace chromecast { | 17 namespace chromecast { |
18 namespace shell { | 18 namespace shell { |
19 | 19 |
20 void AddKeySystemWithCodecs( | |
lcwu1
2015/02/23 19:18:29
Also we might want to add a TODO here to change th
gunsch
2015/02/23 19:30:54
Are we expecting to have to set this differently f
| |
21 const std::string& key_system_name, | |
22 std::vector<::media::KeySystemInfo>* key_systems_info) { | |
23 ::media::KeySystemInfo info; | |
24 info.key_system = key_system_name; | |
25 info.supported_codecs = | |
26 ::media::EME_CODEC_MP4_AAC | ::media::EME_CODEC_MP4_AVC1; | |
27 info.supported_init_data_types = ::media::EME_INIT_DATA_TYPE_CENC; | |
28 info.persistent_license_support = ::media::EME_SESSION_TYPE_NOT_SUPPORTED; | |
29 info.persistent_release_message_support = | |
30 ::media::EME_SESSION_TYPE_NOT_SUPPORTED; | |
31 info.persistent_state_support = ::media::EME_FEATURE_ALWAYS_ENABLED; | |
32 info.distinctive_identifier_support = ::media::EME_FEATURE_ALWAYS_ENABLED; | |
33 key_systems_info->push_back(info); | |
34 } | |
35 | |
20 void AddChromecastKeySystems( | 36 void AddChromecastKeySystems( |
21 std::vector<::media::KeySystemInfo>* key_systems_info) { | 37 std::vector<::media::KeySystemInfo>* key_systems_info) { |
22 #if defined(WIDEVINE_CDM_AVAILABLE) | 38 #if defined(WIDEVINE_CDM_AVAILABLE) |
23 AddWidevineWithCodecs( | 39 AddWidevineWithCodecs( |
24 cdm::WIDEVINE, | 40 cdm::WIDEVINE, |
25 ::media::EME_CODEC_MP4_AAC | ::media::EME_CODEC_MP4_AVC1, | 41 ::media::EME_CODEC_MP4_AAC | ::media::EME_CODEC_MP4_AVC1, |
26 ::media::EME_SESSION_TYPE_NOT_SUPPORTED, // Persistent license. | 42 ::media::EME_SESSION_TYPE_NOT_SUPPORTED, // Persistent license. |
27 ::media::EME_SESSION_TYPE_NOT_SUPPORTED, // Persistent release message. | 43 ::media::EME_SESSION_TYPE_NOT_SUPPORTED, // Persistent release message. |
28 ::media::EME_FEATURE_NOT_SUPPORTED, // Persistent state. | 44 ::media::EME_FEATURE_NOT_SUPPORTED, // Persistent state. |
29 ::media::EME_FEATURE_ALWAYS_ENABLED, // Distinctive identifier. | 45 ::media::EME_FEATURE_ALWAYS_ENABLED, // Distinctive identifier. |
30 key_systems_info); | 46 key_systems_info); |
31 #endif | 47 #endif |
32 | 48 |
33 #if defined(PLAYREADY_CDM_AVAILABLE) | 49 #if defined(PLAYREADY_CDM_AVAILABLE) |
34 ::media::KeySystemInfo info; | 50 AddKeySystemWithCodecs(media::kChromecastPlayreadyKeySystem, |
35 info.key_system = ::media::kChromecastPlayreadyKeySystem; | 51 key_systems_info); |
36 info.supported_codecs = | |
37 ::media::EME_CODEC_MP4_AAC | ::media::EME_CODEC_MP4_AVC1; | |
38 info.supported_init_data_types = ::media::EME_INIT_DATA_TYPE_CENC; | |
39 info.persistent_license_support = ::media::EME_SESSION_TYPE_NOT_SUPPORTED; | |
40 info.persistent_release_message_support = | |
41 ::media::EME_SESSION_TYPE_NOT_SUPPORTED; | |
42 info.persistent_state_support = ::media::EME_FEATURE_ALWAYS_ENABLED; | |
43 info.distinctive_identifier_support = ::media::EME_FEATURE_ALWAYS_ENABLED; | |
44 key_systems_info->push_back(info); | |
45 #endif | 52 #endif |
46 } | 53 } |
47 | 54 |
48 } // namespace shell | 55 } // namespace shell |
49 } // namespace chromecast | 56 } // namespace chromecast |
OLD | NEW |