summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/util/GifFrame.java
blob: 87d58a40d7ab07ef80728648b0f2b39241df0a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.android.gallery3d.util;

import android.graphics.Bitmap;

public class GifFrame {

    public Bitmap    mImage;
    public int       mDelayInMs;  //in milliseconds
    public int       mDispose;
    public GifFrame  mNextFrame = null;

    public GifFrame(Bitmap bitmap, int delay, int dispose) {
        mImage = bitmap;
        mDelayInMs = delay;
        mDispose = dispose;
    }
}