diff options
author | Jeff Tinker <jtinker@google.com> | 2013-08-21 11:59:23 -0700 |
---|---|---|
committer | Jeff Tinker <jtinker@google.com> | 2013-08-22 09:27:35 -0700 |
commit | 9cf69e0fc110f17c28e988ed0f9bf91abfaf710d (patch) | |
tree | c5cb3fb67b26c852f8c7bea7e4eeb87952830842 /include/media | |
parent | 75c16dde986e16ac5fd4d34b06b0cc6a90679866 (diff) | |
download | frameworks_av-9cf69e0fc110f17c28e988ed0f9bf91abfaf710d.zip frameworks_av-9cf69e0fc110f17c28e988ed0f9bf91abfaf710d.tar.gz frameworks_av-9cf69e0fc110f17c28e988ed0f9bf91abfaf710d.tar.bz2 |
Add ability to test supported content types to MediaDrm
bug: 10244066
Change-Id: I317f05b146db962c271893f6208890a5a6c396f1
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/IDrm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/IDrm.h b/include/media/IDrm.h index d630c40..5ef26af 100644 --- a/include/media/IDrm.h +++ b/include/media/IDrm.h @@ -32,7 +32,7 @@ struct IDrm : public IInterface { virtual status_t initCheck() const = 0; - virtual bool isCryptoSchemeSupported(const uint8_t uuid[16]) = 0; + virtual bool isCryptoSchemeSupported(const uint8_t uuid[16], const String8 &mimeType) = 0; virtual status_t createPlugin(const uint8_t uuid[16]) = 0; |