summaryrefslogtreecommitdiffstats
path: root/drm
diff options
context:
space:
mode:
authorJeff Tinker2018-02-01 13:38:06 -0600
committerJeff Tinker2018-02-01 14:26:43 -0600
commitc707779488855e60e17c193e8b7f0cd2b7b7504a (patch)
tree2b70984bee18c9a81c2561cf4c487b0288a1d0fb /drm
parent3e2f90f9cad44dfa5270c2bb08fd76aa1b42b519 (diff)
downloadplatform-hardware-interfaces-c707779488855e60e17c193e8b7f0cd2b7b7504a.tar.gz
platform-hardware-interfaces-c707779488855e60e17c193e8b7f0cd2b7b7504a.tar.xz
platform-hardware-interfaces-c707779488855e60e17c193e8b7f0cd2b7b7504a.zip
Fix incorrect comment in ICryptoFactory.hal
The comment referenced drm@1.1::ICryptoPlugin which doesn't exist. bug:64001680 bug:33657579 Change-Id: I6905fb4b8e3e1386b999ba64a6ca5f160d1c4eff
Diffstat (limited to 'drm')
-rw-r--r--drm/1.1/ICryptoFactory.hal6
1 files changed, 3 insertions, 3 deletions
diff --git a/drm/1.1/ICryptoFactory.hal b/drm/1.1/ICryptoFactory.hal
index a1a74805..1f8caa57 100644
--- a/drm/1.1/ICryptoFactory.hal
+++ b/drm/1.1/ICryptoFactory.hal
@@ -23,11 +23,11 @@ import @1.0::ICryptoPlugin;
23 * crypto HAL to create crypto plugins. Crypto plugins create crypto sessions 23 * crypto HAL to create crypto plugins. Crypto plugins create crypto sessions
24 * which are used by a codec to decrypt protected video content. 24 * which are used by a codec to decrypt protected video content.
25 * 25 *
26 * The 1.1 factory must always create 1.1 ICryptoPlugin interfaces, which are 26 * The 1.1 factory must always create 1.0 ICryptoPlugin interfaces, which are
27 * returned via the 1.0 createPlugin method. 27 * returned via the 1.0 createPlugin method.
28 * 28 *
29 * To use 1.1 features the caller must cast the returned interface to a 29 * The ICryptoFactory hal is required because all top-level interfaces
30 * 1.1 HAL, using V1_1::ICryptoPlugin::castFrom(). 30 * have to be updated in a minor uprev.
31 */ 31 */
32interface ICryptoFactory extends @1.0::ICryptoFactory { 32interface ICryptoFactory extends @1.0::ICryptoFactory {
33}; 33};