Searched defs:numBytesOfEncryptedData (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/java/android/media/
H A DMediaDescrambler.java193 && cryptoInfo.numBytesOfEncryptedData == null) {
200 } else if (cryptoInfo.numBytesOfEncryptedData != null
201 && cryptoInfo.numBytesOfEncryptedData.length < cryptoInfo.numSubSamples) {
203 "Invalid CryptoInfo: numBytesOfEncryptedData is too small!");
215 cryptoInfo.numBytesOfEncryptedData,
249 int[] numBytesOfClearData, int[] numBytesOfEncryptedData,
247 native_descramble( byte key, byte flags, int numSubSamples, int[] numBytesOfClearData, int[] numBytesOfEncryptedData, @NonNull ByteBuffer srcBuf, int srcOffset, int srcLimit, ByteBuffer dstBuf, int dstOffset, int dstLimit) argument
H A DMediaCodec.java2384 * {@link #numBytesOfEncryptedData} can be null to indicate that all data is clear. At least one
2385 * of {@link #numBytesOfClearData} and {@link #numBytesOfEncryptedData} must be non-null.
2440 * as encrypted and {@link #numBytesOfEncryptedData} must be specified.
2447 public int[] numBytesOfEncryptedData; field in class:MediaCodec.CryptoInfo
2533 numBytesOfEncryptedData = newNumBytesOfEncryptedData;
2569 builder.append(Arrays.toString(numBytesOfEncryptedData));
/frameworks/base/media/jni/
H A Dandroid_media_MediaDescrambler.cpp310 jint *numBytesOfEncryptedData = local
326 subSamples[i].numBytesOfEncryptedData =
327 (numBytesOfEncryptedData == NULL)
328 ? 0 : numBytesOfEncryptedData[i];
331 subSamples[i].numBytesOfEncryptedData;
334 if (numBytesOfEncryptedData != NULL) {
336 numBytesOfEncryptedDataObj, numBytesOfEncryptedData, 0);
337 numBytesOfEncryptedData = NULL;
H A Dandroid_media_MediaCodec.cpp1483 jint *numBytesOfEncryptedData = local
1495 (numBytesOfEncryptedData == NULL)
1496 ? 0 : numBytesOfEncryptedData[i];
1499 if (numBytesOfEncryptedData != NULL) {
1501 numBytesOfEncryptedDataObj, numBytesOfEncryptedData, 0);
1502 numBytesOfEncryptedData = NULL;
1916 env->GetFieldID(clazz.get(), "numBytesOfEncryptedData", "[I");

Completed in 76 milliseconds