新しいバイトが割り当てられる単純な JNI 呼び出しがあります。NewByteArray() 関数を呼び出しました。しかし、その関数はメモリを割り当てるのに約 30 秒かかります。それを速くする方法、または私は何かが欠けています。使用するSDKはAndroid API level 21 (Android L)
static jobject getImageRGBABuffer(JNIEnv *env,ASUns8 *buffer, int width, int height)
{
/*some code*/
//size os around 300000
jbyteArray rgbByteArray = env->NewByteArray(size);
//The above statement is taking around 30 seconds.
//How to make it fast or is I am missing something
return byteBuffer;
}