summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/photoeditor/filters/Filter.java
blob: 4304caf6888b9e30074e950ef8ef127fa87ebba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * 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.
 */

package com.android.gallery3d.photoeditor.filters;

import android.annotation.TargetApi;
import android.media.effect.Effect;
import android.media.effect.EffectContext;
import android.os.Parcel;
import android.os.Parcelable;

import com.android.gallery3d.common.ApiHelper;
import com.android.gallery3d.photoeditor.Photo;

import java.util.HashMap;

/**
 * Image filter for photo editing; all of its methods must be called from a single GL thread.
 */
@TargetApi(ApiHelper.VERSION_CODES.ICE_CREAM_SANDWICH)
public abstract class Filter implements Parcelable {

    // TODO: This should be set in MFF instead.
    private static final int DEFAULT_TILE_SIZE = 640;

    private static final HashMap<Filter, Effect> effects = new HashMap<Filter, Effect>();
    private static EffectContext context;

    /**
     * Filter context should be released before the current GL context is lost.
     */
    public static void releaseContext() {
        if (context != null) {
            // Release all effects created with the releasing context.
            for (Effect effect : effects.values()) {
                effect.release();
            }
            effects.clear();
            context.release();
            context = null;
        }
    }

    public void release() {
        Effect effect = effects.remove(this);
        if (effect != null) {
            effect.release();
        }
    }

    protected Effect getEffect(String name) {
        Effect effect = effects.get(this);
        if (effect == null) {
            if (context == null) {
                context = EffectContext.createWithCurrentGlContext();
            }
            effect = context.getFactory().createEffect(name);
            effect.setParameter("tile_size", DEFAULT_TILE_SIZE);
            effects.put(this, effect);
        }
        return effect;
    }

    /**
     * Processes the source bitmap and matrix and output the destination bitmap and matrix.
     *
     * @param src source photo as the input.
     * @param dst destination photo having the same dimension as source photo as the output.
     */
    public abstract void process(Photo src, Photo dst);

    /**
     * Instantiates CREATOR of subclasses for Parcelable implementations.
     */
    protected static <T extends Filter> Parcelable.Creator<T> creatorOf(Class<T> filterClass) {
        return new FilterCreator<T>(filterClass);
    }

    /**
     * Saves states for restoring filter later; subclasses can override this to persist states.
     */
    protected void writeToParcel(Parcel out) {
    }

    /**
     * Restores filter from the saved states; subclasses can override this to persist states.
     */
    protected void readFromParcel(Parcel in) {
    }

    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        writeToParcel(dest);
    }
}