Home | History | Annotate | Download | only in gifdecoder
      1 package com.bumptech.glide.gifdecoder;
      2 
      3 /**
      4  * Inner model class housing metadata for each frame.
      5  */
      6 class GifFrame {
      7     int ix, iy, iw, ih;
      8     /** Control Flag. */
      9     boolean interlace;
     10     /** Control Flag. */
     11     boolean transparency;
     12     /** Disposal Method. */
     13     int dispose;
     14     /** Transparency Index. */
     15     int transIndex;
     16     /** Delay, in ms, to next frame. */
     17     int delay;
     18     /** Index in the raw buffer where we need to start reading to decode. */
     19     int bufferFrameStart;
     20     /** Local Color Table. */
     21     int[] lct;
     22 }
     23