Merge change 6871 into donut

* changes:
  Use SetByteArrayRegion to minimize copy overhead and JNI calls.
This commit is contained in:
Android (Google) Code Review
2009-07-13 09:04:01 -07:00

View File

@@ -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");