diff options
author | Jeff Tinker <jtinker@google.com> | 2014-11-06 02:49:12 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-11-06 02:49:12 +0000 |
commit | 6e0da0226503ddea118d43962a76fa2fa56bad1e (patch) | |
tree | f181518a435200abbe5efb17a238e112bcde8358 /include | |
parent | a4dd2e19f917f25b3eee36f499b126dc115e5446 (diff) | |
parent | e0e8223c10e051b73fdcbed4fc67a69df2655c56 (diff) | |
download | frameworks_av-6e0da0226503ddea118d43962a76fa2fa56bad1e.zip frameworks_av-6e0da0226503ddea118d43962a76fa2fa56bad1e.tar.gz frameworks_av-6e0da0226503ddea118d43962a76fa2fa56bad1e.tar.bz2 |
am e0e8223c: am 1cf9ad1a: Merge "Pass resolution to Crypto plugin on format change" into lmp-mr1-dev
* commit 'e0e8223c10e051b73fdcbed4fc67a69df2655c56':
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_ - |