blob: 3c0514eb1c0f92d2971e1583cef6b0f46b2b9565 [file] [log] [blame]
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <android/bitmap.h>
#include <jni.h>
#include "convolution.h"
#include "utils.h"
#include "_jni.h"
using android::apps::photoeditor::convolution::SpecialConvolution;
using android::apps::photoeditor::utils::LockBitmaps;
using android::apps::photoeditor::utils::UnlockBitmaps;
namespace {
extern "C" JNIEXPORT void JNICALL Java_com_android_photoeditor_filters_ImageUtils_nativeSharpen(
JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jfloat scale) {
pSharpenType f = (pSharpenType)JNIFunc[JNI_Sharpen].func_ptr;
return f(env, obj, src_bitmap, dst_bitmap, scale);
}
extern "C" void Sharpen(
JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jfloat scale) {
AndroidBitmapInfo src_info;
AndroidBitmapInfo dst_info;
void* src_pixels;
void* dst_pixels;
int ret = LockBitmaps(
env, src_bitmap, dst_bitmap, &src_info, &dst_info, &src_pixels, &dst_pixels);
if (ret < 0) {
LOGE("LockBitmaps in Sharpen failed, error=%d", ret);
return;
}
SpecialConvolution(&src_info, &dst_info, src_pixels, dst_pixels, -scale);
UnlockBitmaps(env, src_bitmap, dst_bitmap);
}
} // namespace