OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:encryptedbytes
(Results
1 - 2
of
2
) sorted by null
/cts/tests/tests/media/libmediandkjni/
native-media-jni.cpp
625
size_t
encryptedbytes
[4] = { 8, 7, 6, 5 };
local
628
AMediaCodecCryptoInfo_new(numsubsamples, key, iv, AMEDIACODECRYPTOINFO_MODE_CLEAR, clearbytes,
encryptedbytes
);
656
if (memcmp(
encryptedbytes
, sizes, sizeof(size_t) * numsubsamples)) {
/frameworks/av/media/ndk/
NdkMediaCodec.cpp
367
size_t *
encryptedbytes
;
member in struct:AMediaCodecCryptoInfo
382
subSamples[i].mNumBytesOfEncryptedData = crypto->
encryptedbytes
[i];
412
size_t *
encryptedbytes
) {
426
// clearbytes and
encryptedbytes
point at the actual data, which follows
428
ret->
encryptedbytes
= ret->clearbytes + numsubsamples; // point after the clear sizes
431
memcpy(ret->
encryptedbytes
,
encryptedbytes
, numsubsamples * sizeof(size_t));
500
memcpy(dst, ci->
encryptedbytes
, sizeof(size_t) * ci->numsubsamples);
Completed in 199 milliseconds