Searched refs:numBytesOfEncryptedData (Results 1 - 5 of 5) sorted by path

/frameworks/av/drm/libmediadrm/
H A DCryptoHal.cpp318 subSample.numBytesOfEncryptedData = subSamples[i].mNumBytesOfEncryptedData;
/frameworks/base/media/java/android/media/
H A DMediaCodec.java2376 public int[] numBytesOfEncryptedData; field in class:MediaCodec.CryptoInfo
2461 numBytesOfEncryptedData = newNumBytesOfEncryptedData;
2493 builder.append(Arrays.toString(numBytesOfEncryptedData));
H A DMediaDescrambler.java188 && cryptoInfo.numBytesOfEncryptedData == null) {
195 } else if (cryptoInfo.numBytesOfEncryptedData != null
196 && cryptoInfo.numBytesOfEncryptedData.length < cryptoInfo.numSubSamples) {
198 "Invalid CryptoInfo: numBytesOfEncryptedData is too small!");
209 cryptoInfo.numBytesOfEncryptedData,
240 byte key, int numSubSamples, int[] numBytesOfClearData, int[] numBytesOfEncryptedData,
239 native_descramble( byte key, int numSubSamples, int[] numBytesOfClearData, int[] numBytesOfEncryptedData, @NonNull ByteBuffer srcBuf, int srcOffset, int srcLimit, ByteBuffer dstBuf, int dstOffset, int dstLimit) argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp1368 jint *numBytesOfEncryptedData = local
1380 (numBytesOfEncryptedData == NULL)
1381 ? 0 : numBytesOfEncryptedData[i];
1384 if (numBytesOfEncryptedData != NULL) {
1386 numBytesOfEncryptedDataObj, numBytesOfEncryptedData, 0);
1387 numBytesOfEncryptedData = NULL;
1778 env->GetFieldID(clazz.get(), "numBytesOfEncryptedData", "[I");
H A Dandroid_media_MediaDescrambler.cpp213 jint *numBytesOfEncryptedData = local
231 (numBytesOfEncryptedData == NULL)
232 ? 0 : numBytesOfEncryptedData[i];
238 if (numBytesOfEncryptedData != NULL) {
240 numBytesOfEncryptedDataObj, numBytesOfEncryptedData, 0);
241 numBytesOfEncryptedData = NULL;

Completed in 114 milliseconds