cc: Request a proactive impl frame in early-out commit case.
[chromium-blink-merge.git] / media / base / key_system_info.h
blobe66d8be83880481883ac909419d972c618546ba5
1 // Copyright 2013 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.
5 #ifndef MEDIA_BASE_KEY_SYSTEM_INFO_H_
6 #define MEDIA_BASE_KEY_SYSTEM_INFO_H_
8 #include <string>
10 #include "media/base/eme_constants.h"
11 #include "media/base/media_export.h"
13 // Definitions:
14 // * Key system
15 // https://dvcs.w3.org/hg/html-media/raw-file/default/encrypted-media/encrypted-media.html#key-system
16 // * Concrete key system
17 // A key system string that can be instantiated, such as
18 // via the MediaKeys constructor. Examples include "org.w3.clearkey" and
19 // "com.widevine.alpha".
20 // * Abstract key system
21 // A key system string that cannot be instantiated like a concrete key system
22 // but is otherwise useful, such as in discovery using isTypeSupported().
23 // * Parent key system
24 // A key system string that is one level up from the child key system. It may
25 // be an abstract key system.
26 // As an example, "com.example" is the parent of "com.example.foo".
28 namespace media {
30 // Contains information about an EME key system as well as how to instantiate
31 // the corresponding CDM.
32 struct MEDIA_EXPORT KeySystemInfo {
33 KeySystemInfo();
34 ~KeySystemInfo();
36 std::string key_system;
38 // Specifies registered initialization data types supported by |key_system|.
39 SupportedInitDataTypes supported_init_data_types;
41 // Specifies codecs supported by |key_system|.
42 SupportedCodecs supported_codecs;
44 // Specifies session types and features supported by |key_system|.
45 EmeSessionTypeSupport persistent_license_support;
46 EmeSessionTypeSupport persistent_release_message_support;
47 EmeFeatureSupport persistent_state_support;
48 EmeFeatureSupport distinctive_identifier_support;
50 // A hierarchical parent for |key_system|. This value can be used to check
51 // supported types but cannot be used to instantiate a MediaKeys object.
52 // Only one parent key system is currently supported per concrete key system.
53 std::string parent_key_system;
55 // The following indicate how the corresponding CDM should be instantiated.
56 bool use_aes_decryptor;
57 #if defined(ENABLE_PEPPER_CDMS)
58 std::string pepper_type;
59 #endif
62 } // namespace media
64 #endif // MEDIA_BASE_KEY_SYSTEM_INFO_H_