summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Tinker <jtinker@google.com>2014-11-06 02:55:01 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-06 02:55:01 +0000
commit944f3112a6d3fca7c70602e9696508101385e57c (patch)
tree02a3145700c49cf1c47a8c08dddf0de8a56f8179 /include
parent3db4166958f30d64ef57e7768420b4af6d226d4a (diff)
parent6e0da0226503ddea118d43962a76fa2fa56bad1e (diff)
downloadframeworks_av-944f3112a6d3fca7c70602e9696508101385e57c.zip
frameworks_av-944f3112a6d3fca7c70602e9696508101385e57c.tar.gz
frameworks_av-944f3112a6d3fca7c70602e9696508101385e57c.tar.bz2
am 6e0da022: am e0e8223c: am 1cf9ad1a: Merge "Pass resolution to Crypto plugin on format change" into lmp-mr1-dev
* commit '6e0da0226503ddea118d43962a76fa2fa56bad1e': Pass resolution to Crypto plugin on format change
Diffstat (limited to 'include')
-rw-r--r--include/media/ICrypto.h3
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_
-