Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: media/base/eme_constants.h

Issue 1005903003: Implement robustness strings in requestMediaKeySystemAccess(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename PERMISSION to IDENTIFIER. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef MEDIA_BASE_EME_CONSTANTS_H_ 5 #ifndef MEDIA_BASE_EME_CONSTANTS_H_
6 #define MEDIA_BASE_EME_CONSTANTS_H_ 6 #define MEDIA_BASE_EME_CONSTANTS_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 namespace media { 10 namespace media {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 }; 47 };
48 48
49 typedef uint32_t SupportedInitDataTypes; 49 typedef uint32_t SupportedInitDataTypes;
50 typedef uint32_t SupportedCodecs; 50 typedef uint32_t SupportedCodecs;
51 51
52 enum EmeSessionTypeSupport { 52 enum EmeSessionTypeSupport {
53 // Invalid default value. 53 // Invalid default value.
54 EME_SESSION_TYPE_INVALID, 54 EME_SESSION_TYPE_INVALID,
55 // The session type is not supported. 55 // The session type is not supported.
56 EME_SESSION_TYPE_NOT_SUPPORTED, 56 EME_SESSION_TYPE_NOT_SUPPORTED,
57 // The session type is supported if the encrypted media permission is granted. 57 // The session type is supported if a distinctive identifier is available.
58 EME_SESSION_TYPE_SUPPORTED_WITH_PERMISSION, 58 EME_SESSION_TYPE_SUPPORTED_WITH_IDENTIFIER,
59 // The session type is always supported. 59 // The session type is always supported.
60 EME_SESSION_TYPE_SUPPORTED, 60 EME_SESSION_TYPE_SUPPORTED,
61 }; 61 };
62 62
63 // Used to declare support for distinctive identifier and persistent state.
63 enum EmeFeatureSupport { 64 enum EmeFeatureSupport {
64 // Invalid default value. 65 // Invalid default value.
65 EME_FEATURE_INVALID, 66 EME_FEATURE_INVALID,
66 // Access to the feature is not supported at all. 67 // Access to the feature is not supported at all.
67 EME_FEATURE_NOT_SUPPORTED, 68 EME_FEATURE_NOT_SUPPORTED,
68 // Access to the feature may be requested if the encrypted media permission is 69 // Access to the feature may be requested if a distinctive identifier is
69 // granted. 70 // available. (This is the correct choice for declaring support for a
70 EME_FEATURE_REQUESTABLE_WITH_PERMISSION, 71 // requestable distinctive identifier.)
72 EME_FEATURE_REQUESTABLE_WITH_IDENTIFIER,
71 // Access to the feature may be requested. 73 // Access to the feature may be requested.
72 EME_FEATURE_REQUESTABLE, 74 EME_FEATURE_REQUESTABLE,
73 // Access to the feature cannot be blocked. 75 // Access to the feature cannot be blocked.
74 EME_FEATURE_ALWAYS_ENABLED, 76 EME_FEATURE_ALWAYS_ENABLED,
75 }; 77 };
76 78
79 // Used to query support for distinctive identifier and persistent state.
77 enum EmeFeatureRequirement { 80 enum EmeFeatureRequirement {
78 EME_FEATURE_NOT_ALLOWED, 81 EME_FEATURE_NOT_ALLOWED,
79 EME_FEATURE_OPTIONAL, 82 EME_FEATURE_OPTIONAL,
80 EME_FEATURE_REQUIRED, 83 EME_FEATURE_REQUIRED,
81 }; 84 };
82 85
86 enum class EmeMediaType {
87 AUDIO,
88 VIDEO,
89 };
90
91 // Robustness values understood by KeySystems. Each value imples all those
92 // before it. (This may need to be redesigned to support non-Widevine CDMs.)
93 enum class EmeRobustness {
94 INVALID,
95 EMPTY,
96 SW_SECURE_CRYPTO,
97 SW_SECURE_DECODE,
98 HW_SECURE_CRYPTO,
99 HW_SECURE_DECODE,
100 HW_SECURE_ALL,
101 };
102
103 // Configuration rules indicate the configuration state required to support a
104 // configuration option (note: a configuration option may be disallowing a
105 // feature). Configuration rules are used to answer queries about distinctive
106 // identifier, persistent state, and robustness requirements, as well as to
107 // describe support for different session types.
108 //
109 // If in the future there are reasons to request user permission other than
110 // access to a distinctive identifier, then additional rules should be added.
111 // Rules are implemented in ConfigState and are otherwise opaque.
112 enum class EmeConfigRule {
113 // The configuration option is not supported.
114 NOT_SUPPORTED,
115 // The configuration option is supported if a distinctive identifier is
116 // available.
117 IDENTIFIER_REQUIRED,
118 // The configuration option is supported, but the user experience may be
119 // improved if a distinctive identifier is available.
120 IDENTIFIER_RECOMMENDED,
121 // The configuration option is supported without conditions.
122 SUPPORTED,
123 };
124
83 } // namespace media 125 } // namespace media
84 126
85 #endif // MEDIA_BASE_EME_CONSTANTS_H_ 127 #endif // MEDIA_BASE_EME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698