summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Tinker <jtinker@google.com>2014-11-06 02:36:17 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-11-06 02:36:17 +0000
commit1cf9ad1abb599ce4057189e0db154cf00b4913f8 (patch)
tree1bbf6047da0636dddcac32a904d55c2cd87d2ba0 /include
parent19a3f69d9d5398db62ee7b15f2c13052d7ee9f07 (diff)
parent2514d080c8a54ff603a45d7e336de668fe7329db (diff)
downloadframeworks_av-1cf9ad1abb599ce4057189e0db154cf00b4913f8.zip
frameworks_av-1cf9ad1abb599ce4057189e0db154cf00b4913f8.tar.gz
frameworks_av-1cf9ad1abb599ce4057189e0db154cf00b4913f8.tar.bz2
Merge "Pass resolution to Crypto plugin on format change" into lmp-mr1-dev
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_
-