Home | History | Annotate | Download | only in giflib

Lines Matching refs:CrntCode

860     Private->CrntCode = FIRST_CODE;    /* Signal that this is first one! */
885 int i = 0, CrntCode, NewCode;
893 if (Private->CrntCode == FIRST_CODE) /* Its first time! */
894 CrntCode = Line[i++];
896 CrntCode = Private->CrntCode; /* Get last code in compression. */
901 * CrntCode as Prefix string with Pixel as postfix char.
903 NewKey = (((uint32_t) CrntCode) << 8) + Pixel;
906 * simple take new code as our CrntCode:
908 CrntCode = NewCode;
911 * CrntCode equal to Pixel.
913 if (EGifCompressOutput(GifFile, CrntCode) == GIF_ERROR) {
917 CrntCode = Pixel;
942 Private->CrntCode = CrntCode;
946 if (EGifCompressOutput(GifFile, CrntCode) == GIF_ERROR) {