This commit is contained in:
Looly 2022-05-07 08:36:10 +08:00
parent 322b240ee0
commit ab0448e0fd
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ import java.util.ArrayList;
* } * }
* </pre> * </pre>
* <p> * <p>
* 来自https://github.com/rtyley/animated-gif-lib-for-java * 来自<a href="https://github.com/rtyley/animated-gif-lib-for-java">https://github.com/rtyley/animated-gif-lib-for-java</a>
* *
* @author Kevin Weiner, FM Software; LZW decoder adapted from John Cristy's ImageMagick. * @author Kevin Weiner, FM Software; LZW decoder adapted from John Cristy's ImageMagick.
*/ */
@ -357,10 +357,10 @@ public class GifDecoder {
final int NullCode = -1; final int NullCode = -1;
final int npix = iw * ih; final int npix = iw * ih;
int available; int available;
int clear; final int clear;
int code_mask; int code_mask;
int code_size; int code_size;
int end_of_information; final int end_of_information;
int in_code; int in_code;
int old_code; int old_code;
int bits; int bits;

View File

@ -184,7 +184,7 @@ public class NeuQuant {
int radius; int radius;
int rad; int rad;
int alpha; int alpha;
int step; final int step;
int delta; int delta;
final int samplepixels; final int samplepixels;
final byte[] p; final byte[] p;