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     public int ix, iy, iw, ih;
      8     /* Control Flags */
      9     public boolean interlace;
     10     public boolean transparency;
     11     /* Disposal Method */
     12     public int dispose;
     13     /* Transparency Index */
     14     public int transIndex;
     15     /* Delay, in ms, to next frame */
     16     public int delay;
     17     /* Index in the raw buffer where we need to start reading to decode */
     18     public int bufferFrameStart;
     19     /* Local Color Table */
     20     public int[] lct;
     21 }
     22