summaryrefslogtreecommitdiffstats
path: root/jni/image_util_jni.cpp
diff options
context:
space:
mode:
authorjinwu <jinwu@codeaurora.org>2018-02-09 14:54:16 +0800
committerGerrit - the friendly Code Review server <code-review@localhost>2018-02-28 18:47:19 -0800
commit8045fd4cefcf34a83f791459730481f00b91091d (patch)
tree2b8acd16b3e84b08807a01f86adf72d68ed92dfd /jni/image_util_jni.cpp
parent16988fb8cc67b0768e11313e48043575ac67e545 (diff)
downloadandroid_packages_apps_Snap-8045fd4cefcf34a83f791459730481f00b91091d.tar.gz
android_packages_apps_Snap-8045fd4cefcf34a83f791459730481f00b91091d.tar.bz2
android_packages_apps_Snap-8045fd4cefcf34a83f791459730481f00b91091d.zip
Fix compiling warnings
Change-Id: I4cb217a4283c5234e62f8b895b5aa662c04fb9a2
Diffstat (limited to 'jni/image_util_jni.cpp')
-rw-r--r--jni/image_util_jni.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/jni/image_util_jni.cpp b/jni/image_util_jni.cpp
index 295453532..58568cf52 100644
--- a/jni/image_util_jni.cpp
+++ b/jni/image_util_jni.cpp
@@ -122,6 +122,7 @@ jint JNICALL Java_com_android_camera_imageprocessor_FrameProcessor_nativeRotateN
JNIEnv* env, jobject thiz, jobjectArray inBuf,
jint imageWidth, jint imageHeight, jint degree, jobjectArray outBuf)
{
+ (void)thiz;
uint8_t *in_buf = (uint8_t *)env->GetDirectBufferAddress(inBuf);
uint8_t *out_buf = (uint8_t *)env->GetDirectBufferAddress(outBuf);
rotateBufAndMerge(in_buf, imageWidth, imageHeight, degree, out_buf);
@@ -132,6 +133,7 @@ jint JNICALL Java_com_android_camera_imageprocessor_FrameProcessor_nativeRotateN
jint JNICALL Java_com_android_camera_imageprocessor_FrameProcessor_nativeNV21toRgb(
JNIEnv* env, jobject thiz, jobjectArray yvuBuf, jobjectArray rgbBuf, jint width, jint height)
{
+ (void)thiz;
uint8_t *in_buf = (uint8_t *)env->GetDirectBufferAddress(yvuBuf);
uint8_t *rgb_buf = (uint8_t *)env->GetDirectBufferAddress(rgbBuf);
int ysize = width * height;
@@ -161,6 +163,7 @@ jint JNICALL Java_com_android_camera_imageprocessor_FrameProcessor_nativeNV21toR
jint JNICALL Java_com_android_camera_imageprocessor_PostProcessor_nativeFlipNV21(
JNIEnv* env, jobject thiz, jbyteArray yvuBytes, jint stride, jint height, jint gap, jboolean isVertical)
{
+ (void)thiz;
jbyte* imageDataNV21Array = env->GetByteArrayElements(yvuBytes, NULL);
uint8_t *buf = (uint8_t *)imageDataNV21Array;
int ysize = stride * height;
@@ -211,6 +214,7 @@ jint JNICALL Java_com_android_camera_imageprocessor_PostProcessor_nativeFlipNV21
jint JNICALL Java_com_android_camera_imageprocessor_PostProcessor_nativeNV21Split(
JNIEnv* env, jobject thiz, jbyteArray srcYVU, jobjectArray yBuf, jobjectArray vuBuf, jint width, jint height, jint srcStride, jint dstStride) {
+ (void)thiz;
uint8_t *old_buf = (uint8_t *) env->GetByteArrayElements(srcYVU, NULL);
uint8_t *y_buf = (uint8_t *)env->GetDirectBufferAddress(yBuf);
uint8_t *vu_buf = (uint8_t *)env->GetDirectBufferAddress(vuBuf);
@@ -231,6 +235,7 @@ jint JNICALL Java_com_android_camera_imageprocessor_PostProcessor_nativeNV21Spli
jint JNICALL Java_com_android_camera_imageprocessor_PostProcessor_nativeResizeImage(
JNIEnv* env, jobject thiz, jbyteArray oldBuf, jbyteArray newBuf, jint oldWidth, jint oldHeight, jint oldStride, jint newWidth, jint newHeight) {
+ (void)thiz;
uint8_t *old_buf = (uint8_t *) env->GetByteArrayElements(oldBuf, NULL);
uint8_t *new_buf = (uint8_t *) env->GetByteArrayElements(newBuf, NULL);
int adjustedOldWidth = oldWidth;
@@ -290,4 +295,4 @@ jint JNICALL Java_com_android_camera_imageprocessor_PostProcessor_nativeResizeIm
env->ReleaseByteArrayElements(newBuf, (jbyte *)new_buf, JNI_ABORT);
return R;
-} \ No newline at end of file
+}