summaryrefslogtreecommitdiffstats
path: root/media/libmediaplayerservice/Crypto.h
diff options
context:
space:
mode:
authorJeff Tinker <jtinker@google.com>2015-04-06 18:21:05 -0700
committerJeff Tinker <jtinker@google.com>2015-04-08 18:33:59 -0700
commitc481b5012a5f6cf72e5e93b36f1ed4c9169916f2 (patch)
treebbb7920204199b43cd24075d48b8fa387a43059f /media/libmediaplayerservice/Crypto.h
parente41b5f31148f9cfb7316295c900c7d3c695510b2 (diff)
downloadframeworks_av-c481b5012a5f6cf72e5e93b36f1ed4c9169916f2.zip
frameworks_av-c481b5012a5f6cf72e5e93b36f1ed4c9169916f2.tar.gz
frameworks_av-c481b5012a5f6cf72e5e93b36f1ed4c9169916f2.tar.bz2
Pass crypto source data using a shared buffer
MediaCodec was using a binder transaction buffer to pass encryption source data for protected content. On some 4K content, the max binder transaction buffer size was being exceeded. This change uses a shared buffer for the encryption source data instead of a binder transaction buffer, which avoids the problem and may be more efficient. bug: 20027687 Change-Id: I36a24ebf600d7e1064b78e48b167fdc29b2c65e9
Diffstat (limited to 'media/libmediaplayerservice/Crypto.h')
-rw-r--r--media/libmediaplayerservice/Crypto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libmediaplayerservice/Crypto.h b/media/libmediaplayerservice/Crypto.h
index 0037c2e..d5f3c50 100644
--- a/media/libmediaplayerservice/Crypto.h
+++ b/media/libmediaplayerservice/Crypto.h
@@ -52,7 +52,7 @@ struct Crypto : public BnCrypto {
const uint8_t key[16],
const uint8_t iv[16],
CryptoPlugin::Mode mode,
- const void *srcPtr,
+ const sp<IMemory> &sharedBuffer, size_t offset,
const CryptoPlugin::SubSample *subSamples, size_t numSubSamples,
void *dstPtr,
AString *errorDetailMsg);