OSDN Git Service

am 02b24ed2: am b559b2dd: add vibrance fix a free in shadows
[android-x86/packages-apps-Gallery2.git] / jni / filters / shadows.c
1 /*
2  * Copyright (C) 2012 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <math.h>
18 #include "filters.h"
19
20  void JNIFUNCF(ImageFilterShadows, nativeApplyFilter, jobject bitmap, jint width, jint height, jshortArray vlut)
21  {
22      char* destination = 0;
23      AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24      unsigned char * rgb = (unsigned char * )destination;
25      int i;
26      int len = width * height * 4;
27      short* lut = (*env)->GetShortArrayElements(env, vlut,0);
28      unsigned short * hsv = (unsigned short *)malloc(3*sizeof(short));
29      for (i = 0; i < len; i+=4)
30      {
31        rgb2hsv(rgb,i,hsv,0);
32        hsv[0] = lut[hsv[0]];
33        hsv2rgb(hsv,0, rgb,i);
34      }
35
36      (*env)->ReleaseShortArrayElements(env, vlut, lut, 0);
37      free(hsv);
38      AndroidBitmap_unlockPixels(env, bitmap);
39  }