Merge change 6871 into donut
* changes: Use SetByteArrayRegion to minimize copy overhead and JNI calls.
This commit is contained in:
@@ -143,10 +143,7 @@ void JNICameraContext::copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int
|
||||
LOGE("Couldn't allocate byte array for JPEG data");
|
||||
env->ExceptionClear();
|
||||
} else {
|
||||
jbyte *bytes = static_cast<jbyte*>(env->GetPrimitiveArrayCritical(obj, NULL));
|
||||
memcpy(bytes, data, size);
|
||||
env->ReleasePrimitiveArrayCritical(obj, bytes, 0);
|
||||
|
||||
env->SetByteArrayRegion(obj, 0, size, data);
|
||||
}
|
||||
} else {
|
||||
LOGE("image heap is NULL");
|
||||
|
||||
Reference in New Issue
Block a user