Merge "MediaCodec: check for exceptions when creating crypto info" am: 2f222457a2 am: b03acdec6c

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2281605

Change-Id: I76af584956a130a3097b5366be988fdce8b7b71f
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2023-01-12 03:00:57 +00:00
committed by Automerger Merge Worker

View File

@@ -2432,13 +2432,12 @@ static void android_media_MediaCodec_native_queueLinearBlock(
throwExceptionAsNecessary(env, BAD_VALUE);
return;
}
NativeCryptoInfo cryptoInfo = [env, cryptoInfoObj, size]{
if (cryptoInfoObj == nullptr) {
return NativeCryptoInfo{size};
} else {
return NativeCryptoInfo{env, cryptoInfoObj};
}
}();
auto cryptoInfo =
cryptoInfoObj ? NativeCryptoInfo{size} : NativeCryptoInfo{env, cryptoInfoObj};
if (env->ExceptionCheck()) {
// Creation of cryptoInfo failed. Let the exception bubble up.
return;
}
err = codec->queueEncryptedLinearBlock(
index,
memory,