diff options
author | Jeff Tinker <jtinker@google.com> | 2014-11-06 02:39:17 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-11-06 02:39:17 +0000 |
commit | e0e8223c10e051b73fdcbed4fc67a69df2655c56 (patch) | |
tree | 1bbf6047da0636dddcac32a904d55c2cd87d2ba0 /include | |
parent | 7ed62fb4a7401adc3e8b4e082bcfa21de443ebbe (diff) | |
parent | 1cf9ad1abb599ce4057189e0db154cf00b4913f8 (diff) | |
download | frameworks_av-e0e8223c10e051b73fdcbed4fc67a69df2655c56.zip frameworks_av-e0e8223c10e051b73fdcbed4fc67a69df2655c56.tar.gz frameworks_av-e0e8223c10e051b73fdcbed4fc67a69df2655c56.tar.bz2 |
am 1cf9ad1a: Merge "Pass resolution to Crypto plugin on format change" into lmp-mr1-dev
* commit '1cf9ad1abb599ce4057189e0db154cf00b4913f8':
Pass resolution to Crypto plugin on format change
Diffstat (limited to 'include')
-rw-r--r-- | include/media/ICrypto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/media/ICrypto.h b/include/media/ICrypto.h index 9dcb8d9..07742ca 100644 --- a/include/media/ICrypto.h +++ b/include/media/ICrypto.h @@ -41,6 +41,8 @@ struct ICrypto : public IInterface { virtual bool requiresSecureDecoderComponent( const char *mime) const = 0; + virtual void notifyResolution(uint32_t width, uint32_t height) = 0; + virtual ssize_t decrypt( bool secure, const uint8_t key[16], @@ -64,4 +66,3 @@ struct BnCrypto : public BnInterface<ICrypto> { } // namespace android #endif // ANDROID_ICRYPTO_H_ - |