circuitpython/lib/AnimatedGIF/gif.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

1044 lines
39 KiB
C
Raw Normal View History

2023-02-04 17:44:29 -05:00
//
// GIF Animator
// written by Larry Bank
// bitbank@pobox.com
// Arduino port started 7/5/2020
// Original GIF code written 20+ years ago :)
// The goal of this code is to decode images up to 480x320
// using no more than 22K of RAM (if sent directly to an LCD display)
//
// Copyright 2020 BitBank Software, Inc. All Rights Reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2023-02-10 19:31:59 -05:00
//===========================================================================
//
// Modified 2023 by Mark Komus to work for CircuitPython
//
2023-02-04 17:44:29 -05:00
#include "AnimatedGIF_circuitpy.h"
#ifdef HAL_ESP32_HAL_H_
#define memcpy_P memcpy
#endif
static const unsigned char cGIFBits[9] = {1,4,4,4,8,8,8,8,8}; // convert odd bpp values to ones we can handle
// forward references
static int GIFInit(GIFIMAGE *pGIF);
static int GIFParseInfo(GIFIMAGE *pPage, int bInfoOnly);
static int GIFGetMoreData(GIFIMAGE *pPage);
static void GIFMakePels(GIFIMAGE *pPage, unsigned int code);
static int DecodeLZW(GIFIMAGE *pImage, int iOptions);
static int32_t readMem(GIFFILE *pFile, uint8_t *pBuf, int32_t iLen);
static int32_t seekMem(GIFFILE *pFile, int32_t iPosition);
int GIF_getInfo(GIFIMAGE *pPage, GIFINFO *pInfo);
2023-02-10 19:31:59 -05:00
#if defined ( __LINUX__ ) || defined( __MCUXPRESSO )
2023-02-04 17:44:29 -05:00
static int32_t readFile(GIFFILE *pFile, uint8_t *pBuf, int32_t iLen);
static int32_t seekFile(GIFFILE *pFile, int32_t iPosition);
static void closeFile(void *handle);
2023-02-10 19:31:59 -05:00
#endif
2023-02-04 17:44:29 -05:00
// C API
2023-02-10 19:31:59 -05:00
int GIF_openRAM(GIFIMAGE *pGIF, uint8_t *pData, int iDataSize, GIF_DRAW_CALLBACK *pfnDraw)
{
2023-02-04 17:44:29 -05:00
pGIF->iError = GIF_SUCCESS;
pGIF->pfnRead = readMem;
pGIF->pfnSeek = seekMem;
pGIF->pfnDraw = pfnDraw;
pGIF->pfnOpen = NULL;
pGIF->pfnClose = NULL;
pGIF->GIFFile.iSize = iDataSize;
pGIF->GIFFile.pData = pData;
return GIFInit(pGIF);
} /* GIF_openRAM() */
#ifdef __LINUX__
2023-02-10 19:31:59 -05:00
int GIF_openFile(GIFIMAGE *pGIF, const char *szFilename, GIF_DRAW_CALLBACK *pfnDraw)
{
2023-02-04 17:44:29 -05:00
pGIF->iError = GIF_SUCCESS;
pGIF->pfnRead = readFile;
pGIF->pfnSeek = seekFile;
pGIF->pfnDraw = pfnDraw;
pGIF->pfnOpen = NULL;
pGIF->pfnClose = closeFile;
pGIF->GIFFile.fHandle = fopen(szFilename, "r+b");
2023-02-10 19:31:59 -05:00
if (pGIF->GIFFile.fHandle == NULL)
return 0;
2023-02-04 17:44:29 -05:00
fseek((FILE *)pGIF->GIFFile.fHandle, 0, SEEK_END);
pGIF->GIFFile.iSize = (int)ftell((FILE *)pGIF->GIFFile.fHandle);
fseek((FILE *)pGIF->GIFFile.fHandle, 0, SEEK_SET);
return GIFInit(pGIF);
} /* GIF_openFile() */
#endif
2023-02-10 19:31:59 -05:00
void GIF_close(GIFIMAGE *pGIF)
{
if (pGIF->pfnClose)
2023-02-04 17:44:29 -05:00
(*pGIF->pfnClose)(pGIF->GIFFile.fHandle);
} /* GIF_close() */
2023-02-10 19:31:59 -05:00
void GIF_begin(GIFIMAGE *pGIF, unsigned char ucPaletteType)
{
2023-02-04 17:44:29 -05:00
memset(pGIF, 0, sizeof(GIFIMAGE));
pGIF->ucPaletteType = ucPaletteType;
} /* GIF_begin() */
2023-02-10 19:31:59 -05:00
void GIF_reset(GIFIMAGE *pGIF)
{
2023-02-04 17:44:29 -05:00
(*pGIF->pfnSeek)(&pGIF->GIFFile, 0);
} /* GIF_reset() */
//
// Return value:
// 1 = good decode, more frames exist
// 0 = good decode, no more frames
// -1 = error
//
2023-02-10 19:31:59 -05:00
int GIF_playFrame(GIFIMAGE *pGIF, int *delayMilliseconds, void *pUser)
{
int rc;
2023-02-04 17:44:29 -05:00
2023-02-10 19:31:59 -05:00
if (delayMilliseconds)
*delayMilliseconds = 0; // clear any old valid
if (pGIF->GIFFile.iPos >= pGIF->GIFFile.iSize-1) // no more data exists
{
2023-02-04 17:44:29 -05:00
(*pGIF->pfnSeek)(&pGIF->GIFFile, 0); // seek to start
}
2023-02-10 19:31:59 -05:00
if (GIFParseInfo(pGIF, 0))
{
2023-02-04 17:44:29 -05:00
pGIF->pUser = pUser;
2023-02-10 19:31:59 -05:00
if (pGIF->iError == GIF_EMPTY_FRAME) // don't try to decode it
2023-02-04 17:44:29 -05:00
return 0;
rc = DecodeLZW(pGIF, 0);
2023-02-10 19:31:59 -05:00
if (rc != 0) // problem
2023-02-04 17:44:29 -05:00
return 0;
2023-02-10 19:31:59 -05:00
}
else
{
2023-02-04 17:44:29 -05:00
return 0; // error parsing the frame info, we may be at the end of the file
}
// Return 1 for more frames or 0 if this was the last frame
2023-02-10 19:31:59 -05:00
if (delayMilliseconds) // if not NULL, return the frame delay time
2023-02-04 17:44:29 -05:00
*delayMilliseconds = pGIF->iFrameDelay;
2023-02-10 19:31:59 -05:00
return (pGIF->GIFFile.iPos < pGIF->GIFFile.iSize-1);
2023-02-04 17:44:29 -05:00
} /* GIF_playFrame() */
2023-02-10 19:31:59 -05:00
int GIF_getCanvasWidth(GIFIMAGE *pGIF)
{
2023-02-04 17:44:29 -05:00
return pGIF->iCanvasWidth;
} /* GIF_getCanvasWidth() */
2023-02-10 19:31:59 -05:00
int GIF_getCanvasHeight(GIFIMAGE *pGIF)
{
2023-02-04 17:44:29 -05:00
return pGIF->iCanvasHeight;
} /* GIF_getCanvasHeight() */
2023-02-10 19:31:59 -05:00
int GIF_getLoopCount(GIFIMAGE *pGIF)
{
2023-02-04 17:44:29 -05:00
return pGIF->iRepeatCount;
} /* GIF_getLoopCount() */
2023-02-10 19:31:59 -05:00
int GIF_getComment(GIFIMAGE *pGIF, char *pDest)
{
int32_t iOldPos;
2023-02-04 17:44:29 -05:00
iOldPos = pGIF->GIFFile.iPos; // keep old position
(*pGIF->pfnSeek)(&pGIF->GIFFile, pGIF->iCommentPos);
(*pGIF->pfnRead)(&pGIF->GIFFile, (uint8_t *)pDest, pGIF->sCommentLen);
(*pGIF->pfnSeek)(&pGIF->GIFFile, iOldPos);
pDest[pGIF->sCommentLen] = 0; // zero terminate the string
return (int)pGIF->sCommentLen;
} /* GIF_getComment() */
2023-02-10 19:31:59 -05:00
int GIF_getLastError(GIFIMAGE *pGIF)
{
2023-02-04 17:44:29 -05:00
return pGIF->iError;
} /* GIF_getLastError() */
int GIF_init(GIFIMAGE *pGIF) {
return GIFInit(pGIF);
}
//
// Helper functions for memory based images
//
2023-02-10 19:31:59 -05:00
static int32_t readMem(GIFFILE *pFile, uint8_t *pBuf, int32_t iLen)
{
2023-02-04 17:44:29 -05:00
int32_t iBytesRead;
iBytesRead = iLen;
2023-02-10 19:31:59 -05:00
if ((pFile->iSize - pFile->iPos) < iLen)
iBytesRead = pFile->iSize - pFile->iPos;
if (iBytesRead <= 0)
return 0;
2023-02-04 17:44:29 -05:00
memmove(pBuf, &pFile->pData[pFile->iPos], iBytesRead);
pFile->iPos += iBytesRead;
return iBytesRead;
} /* readMem() */
2023-02-10 19:31:59 -05:00
#ifndef CIRCUITPY
2023-02-04 17:44:29 -05:00
static int32_t readFLASH(GIFFILE *pFile, uint8_t *pBuf, int32_t iLen)
{
int32_t iBytesRead;
iBytesRead = iLen;
if ((pFile->iSize - pFile->iPos) < iLen)
iBytesRead = pFile->iSize - pFile->iPos;
if (iBytesRead <= 0)
return 0;
memcpy_P(pBuf, &pFile->pData[pFile->iPos], iBytesRead);
pFile->iPos += iBytesRead;
return iBytesRead;
2023-02-10 19:31:59 -05:00
} /* readFLASH() */
#endif
2023-02-04 17:44:29 -05:00
2023-02-10 19:31:59 -05:00
static int32_t seekMem(GIFFILE *pFile, int32_t iPosition)
{
if (iPosition < 0) iPosition = 0;
else if (iPosition >= pFile->iSize) iPosition = pFile->iSize-1;
2023-02-04 17:44:29 -05:00
pFile->iPos = iPosition;
return iPosition;
} /* seekMem() */
2023-02-10 19:31:59 -05:00
#if defined ( __LINUX__ ) || defined( __MCUXPRESSO )
static void closeFile(void *handle)
{
2023-02-04 17:44:29 -05:00
fclose((FILE *)handle);
} /* closeFile() */
2023-02-10 19:31:59 -05:00
static int32_t seekFile(GIFFILE *pFile, int32_t iPosition)
{
if (iPosition < 0) iPosition = 0;
else if (iPosition >= pFile->iSize) iPosition = pFile->iSize-1;
2023-02-04 17:44:29 -05:00
pFile->iPos = iPosition;
fseek((FILE *)pFile->fHandle, iPosition, SEEK_SET);
return iPosition;
} /* seekMem() */
2023-02-10 19:31:59 -05:00
static int32_t readFile(GIFFILE *pFile, uint8_t *pBuf, int32_t iLen)
{
2023-02-04 17:44:29 -05:00
int32_t iBytesRead;
iBytesRead = iLen;
2023-02-10 19:31:59 -05:00
if ((pFile->iSize - pFile->iPos) < iLen)
iBytesRead = pFile->iSize - pFile->iPos;
if (iBytesRead <= 0)
return 0;
2023-02-04 17:44:29 -05:00
iBytesRead = (int)fread(pBuf, 1, iBytesRead, (FILE *)pFile->fHandle);
pFile->iPos += iBytesRead;
return iBytesRead;
} /* readFile() */
#endif // __LINUX__
//
// The following functions are written in plain C and have no
// 3rd party dependencies, not even the C runtime library
//
//
// Initialize a GIF file and callback access from a file on SD or memory
// returns 1 for success, 0 for failure
// Fills in the canvas size of the GIFIMAGE structure
//
2023-02-10 19:31:59 -05:00
static int GIFInit(GIFIMAGE *pGIF)
{
2023-02-04 17:44:29 -05:00
pGIF->GIFFile.iPos = 0; // start at beginning of file
2023-02-10 19:31:59 -05:00
if (!GIFParseInfo(pGIF, 1)) // gather info for the first frame
return 0; // something went wrong; not a GIF file?
2023-02-04 17:44:29 -05:00
(*pGIF->pfnSeek)(&pGIF->GIFFile, 0); // seek back to start of the file
if (pGIF->iCanvasWidth > MAX_WIDTH) { // need to allocate more space
pGIF->iError = GIF_TOO_WIDE;
return 0;
}
2023-02-10 19:31:59 -05:00
return 1;
2023-02-04 17:44:29 -05:00
} /* GIFInit() */
//
// Parse the GIF header, gather the size and palette info
// If called with bInfoOnly set to true, it will test for a valid file
// and return the canvas size only
// Returns 1 for success, 0 for failure
//
2023-02-10 19:31:59 -05:00
static int GIFParseInfo(GIFIMAGE *pPage, int bInfoOnly)
{
2023-02-04 17:44:29 -05:00
int i, j, iColorTableBits;
int iBytesRead;
unsigned char c, *p;
int32_t iOffset = 0;
int32_t iStartPos = pPage->GIFFile.iPos; // starting file position
int iReadSize;
pPage->bUseLocalPalette = 0; // assume no local palette
pPage->bEndOfFrame = 0; // we're just getting started
pPage->iFrameDelay = 0; // may not have a gfx extension block
pPage->iRepeatCount = -1; // assume NETSCAPE loop count is not specified
iReadSize = (bInfoOnly) ? 12 : MAX_CHUNK_SIZE;
// If you try to read past the EOF, the SD lib will return garbage data
2023-02-10 19:31:59 -05:00
if (iStartPos + iReadSize > pPage->GIFFile.iSize)
iReadSize = (pPage->GIFFile.iSize - iStartPos - 1);
2023-02-04 17:44:29 -05:00
p = pPage->ucFileBuf;
2023-02-10 19:31:59 -05:00
iBytesRead = (*pPage->pfnRead)(&pPage->GIFFile, pPage->ucFileBuf, iReadSize); // 255 is plenty for now
2023-02-04 17:44:29 -05:00
2023-02-10 19:31:59 -05:00
if (iBytesRead != iReadSize) // we're at the end of the file
{
pPage->iError = GIF_EARLY_EOF;
return 0;
2023-02-04 17:44:29 -05:00
}
2023-02-10 19:31:59 -05:00
if (iStartPos == 0) // start of the file
{ // canvas size
if (memcmp(p, "GIF89", 5) != 0 && memcmp(p, "GIF87", 5) != 0) // not a GIF file
{
pPage->iError = GIF_BAD_FILE;
return 0;
2023-02-04 17:44:29 -05:00
}
pPage->iCanvasWidth = pPage->iWidth = INTELSHORT(&p[6]);
pPage->iCanvasHeight = pPage->iHeight = INTELSHORT(&p[8]);
pPage->iBpp = ((p[10] & 0x70) >> 4) + 1;
2023-02-10 19:31:59 -05:00
if (bInfoOnly)
return 1; // we've got the info we needed, leave
2023-02-04 17:44:29 -05:00
iColorTableBits = (p[10] & 7) + 1; // Log2(size) of the color table
pPage->ucBackground = p[11]; // background color
pPage->ucGIFBits = 0;
iOffset = 13;
2023-02-10 19:31:59 -05:00
if (p[10] & 0x80) // global color table?
{ // by default, convert to byte-reversed RGB565 for immediate use
2023-02-04 17:44:29 -05:00
// Read enough additional data for the color table
2023-02-10 19:31:59 -05:00
iBytesRead += (*pPage->pfnRead)(&pPage->GIFFile, &pPage->ucFileBuf[iBytesRead], 3*(1<<iColorTableBits));
if (pPage->ucPaletteType == GIF_PALETTE_RGB565_LE || pPage->ucPaletteType == GIF_PALETTE_RGB565_BE)
{
for (i=0; i<(1<<iColorTableBits); i++)
2023-02-04 17:44:29 -05:00
{
uint16_t usRGB565;
usRGB565 = ((p[iOffset] >> 3) << 11); // R
2023-02-10 19:31:59 -05:00
usRGB565 |= ((p[iOffset+1] >> 2) << 5); // G
usRGB565 |= (p[iOffset+2] >> 3); // B
if (pPage->ucPaletteType == GIF_PALETTE_RGB565_LE)
2023-02-04 17:44:29 -05:00
pPage->pPalette[i] = usRGB565;
2023-02-10 19:31:59 -05:00
else
2023-02-04 17:44:29 -05:00
pPage->pPalette[i] = __builtin_bswap16(usRGB565); // SPI wants MSB first
iOffset += 3;
}
2023-02-10 19:31:59 -05:00
}
else // just copy it as-is
{
memcpy(pPage->pPalette, &p[iOffset], (1<<iColorTableBits) * 3);
2023-02-04 17:44:29 -05:00
iOffset += (1 << iColorTableBits) * 3;
}
}
}
2023-02-10 19:31:59 -05:00
while (p[iOffset] != ',' && p[iOffset] != ';') /* Wait for image separator */
{
if (p[iOffset] == '!') /* Extension block */
{
2023-02-04 17:44:29 -05:00
iOffset++;
2023-02-10 19:31:59 -05:00
switch(p[iOffset++]) /* Block type */
2023-02-04 17:44:29 -05:00
{
case 0xf9: /* Graphic extension */
2023-02-10 19:31:59 -05:00
if (p[iOffset] == 4) // correct length
{
pPage->ucGIFBits = p[iOffset+1]; // packed fields
pPage->iFrameDelay = (INTELSHORT(&p[iOffset+2]))*10; // delay in ms
if (pPage->iFrameDelay <= 1) // 0-1 is going to make it run at 60fps; use 100 (10fps) as a reasonable substitute
pPage->iFrameDelay = 100;
if (pPage->ucGIFBits & 1) // transparent color is used
pPage->ucTransparent = p[iOffset+4]; // transparent color index
2023-02-04 17:44:29 -05:00
iOffset += 6;
}
// else // error
break;
case 0xff: /* App extension */
c = 1;
2023-02-10 19:31:59 -05:00
while (c) /* Skip all data sub-blocks */
{
2023-02-04 17:44:29 -05:00
c = p[iOffset++]; /* Block length */
2023-02-10 19:31:59 -05:00
if ((iBytesRead - iOffset) < (c+32)) // need to read more data first
{
memmove(pPage->ucFileBuf, &pPage->ucFileBuf[iOffset], (iBytesRead-iOffset)); // move existing data down
2023-02-04 17:44:29 -05:00
iBytesRead -= iOffset;
iStartPos += iOffset;
iOffset = 0;
2023-02-10 19:31:59 -05:00
iBytesRead += (*pPage->pfnRead)(&pPage->GIFFile, &pPage->ucFileBuf[iBytesRead], c+32);
2023-02-04 17:44:29 -05:00
}
2023-02-10 19:31:59 -05:00
if (c == 11) // fixed block length
{ // Netscape app block contains the repeat count
if (memcmp(&p[iOffset], "NETSCAPE2.0", 11) == 0)
{
if (p[iOffset+11] == 3 && p[iOffset+12] == 1) // loop count
pPage->iRepeatCount = INTELSHORT(&p[iOffset+13]);
2023-02-04 17:44:29 -05:00
}
}
iOffset += (int)c; /* Skip to next sub-block */
}
break;
case 0x01: /* Text extension */
c = 1;
j = 0;
2023-02-10 19:31:59 -05:00
while (c) /* Skip all data sub-blocks */
{
2023-02-04 17:44:29 -05:00
c = p[iOffset++]; /* Block length */
2023-02-10 19:31:59 -05:00
if (j == 0) // use only first block
{
2023-02-04 17:44:29 -05:00
j = c;
2023-02-10 19:31:59 -05:00
if (j > 127) // max comment length = 127
2023-02-04 17:44:29 -05:00
j = 127;
// memcpy(pPage->szInfo1, &p[iOffset], j);
// pPage->szInfo1[j] = '\0';
j = 1;
}
iOffset += (int)c; /* Skip this sub-block */
}
break;
case 0xfe: /* Comment */
c = 1;
2023-02-10 19:31:59 -05:00
while (c) /* Skip all data sub-blocks */
{
2023-02-04 17:44:29 -05:00
c = p[iOffset++]; /* Block length */
2023-02-10 19:31:59 -05:00
if ((iBytesRead - iOffset) < (c+32)) // need to read more data first
{
memmove(pPage->ucFileBuf, &pPage->ucFileBuf[iOffset], (iBytesRead-iOffset)); // move existing data down
2023-02-04 17:44:29 -05:00
iBytesRead -= iOffset;
iStartPos += iOffset;
iOffset = 0;
2023-02-10 19:31:59 -05:00
iBytesRead += (*pPage->pfnRead)(&pPage->GIFFile, &pPage->ucFileBuf[iBytesRead], c+32);
2023-02-04 17:44:29 -05:00
}
2023-02-10 19:31:59 -05:00
if (pPage->iCommentPos == 0) // Save first block info
{
2023-02-04 17:44:29 -05:00
pPage->iCommentPos = iStartPos + iOffset;
pPage->sCommentLen = c;
}
iOffset += (int)c; /* Skip this sub-block */
}
break;
default:
/* Bad header info */
pPage->iError = GIF_DECODE_ERROR;
return 0;
} /* switch */
2023-02-10 19:31:59 -05:00
}
else // invalid byte, stop decoding
{
if (pPage->GIFFile.iSize - iStartPos < 32) // non-image bytes at end of file?
2023-02-04 17:44:29 -05:00
pPage->iError = GIF_EMPTY_FRAME;
2023-02-10 19:31:59 -05:00
else
2023-02-04 17:44:29 -05:00
/* Bad header info */
pPage->iError = GIF_DECODE_ERROR;
return 0;
}
} /* while */
if (p[iOffset] == ';') { // end of file, quit and return a correct error code
pPage->iError = GIF_EMPTY_FRAME;
return 1;
}
2023-02-10 19:31:59 -05:00
if (p[iOffset] == ',')
2023-02-04 17:44:29 -05:00
iOffset++;
// This particular frame's size and position on the main frame (if animated)
pPage->iX = INTELSHORT(&p[iOffset]);
2023-02-10 19:31:59 -05:00
pPage->iY = INTELSHORT(&p[iOffset+2]);
pPage->iWidth = INTELSHORT(&p[iOffset+4]);
pPage->iHeight = INTELSHORT(&p[iOffset+6]);
2023-02-04 17:44:29 -05:00
iOffset += 8;
/* Image descriptor
7 6 5 4 3 2 1 0 M=0 - use global color map, ignore pixel
M I 0 0 0 pixel M=1 - local color map follows, use pixel
I=0 - Image in sequential order
I=1 - Image in interlaced order
pixel+1 = # bits per pixel for this image
*/
pPage->ucMap = p[iOffset++];
2023-02-10 19:31:59 -05:00
if (pPage->ucMap & 0x80) // local color table?
{// by default, convert to byte-reversed RGB565 for immediate use
j = (1<<((pPage->ucMap & 7)+1));
2023-02-04 17:44:29 -05:00
// Read enough additional data for the color table
2023-02-10 19:31:59 -05:00
iBytesRead += (*pPage->pfnRead)(&pPage->GIFFile, &pPage->ucFileBuf[iBytesRead], j*3);
if (pPage->ucPaletteType == GIF_PALETTE_RGB565_LE || pPage->ucPaletteType == GIF_PALETTE_RGB565_BE)
{
for (i=0; i<j; i++)
2023-02-04 17:44:29 -05:00
{
uint16_t usRGB565;
usRGB565 = ((p[iOffset] >> 3) << 11); // R
2023-02-10 19:31:59 -05:00
usRGB565 |= ((p[iOffset+1] >> 2) << 5); // G
usRGB565 |= (p[iOffset+2] >> 3); // B
if (pPage->ucPaletteType == GIF_PALETTE_RGB565_LE)
2023-02-04 17:44:29 -05:00
pPage->pLocalPalette[i] = usRGB565;
2023-02-10 19:31:59 -05:00
else
2023-02-04 17:44:29 -05:00
pPage->pLocalPalette[i] = __builtin_bswap16(usRGB565); // SPI wants MSB first
iOffset += 3;
}
2023-02-10 19:31:59 -05:00
}
else // just copy it as-is
{
2023-02-04 17:44:29 -05:00
memcpy(pPage->pLocalPalette, &p[iOffset], j * 3);
2023-02-10 19:31:59 -05:00
iOffset += j*3;
2023-02-04 17:44:29 -05:00
}
pPage->bUseLocalPalette = 1;
}
pPage->ucCodeStart = p[iOffset++]; /* initial code size */
/* Since GIF can be 1-8 bpp, we only allow 1,4,8 */
pPage->iBpp = cGIFBits[pPage->ucCodeStart];
// we are re-using the same buffer turning GIF file data
// into "pure" LZW
2023-02-10 19:31:59 -05:00
pPage->iLZWSize = 0; // we're starting with no LZW data yet
c = 1; // get chunk length
while (c && iOffset < iBytesRead)
{
2023-02-04 17:44:29 -05:00
// Serial.printf("iOffset=%d, iBytesRead=%d\n", iOffset, iBytesRead);
2023-02-10 19:31:59 -05:00
c = p[iOffset++]; // get chunk length
2023-02-04 17:44:29 -05:00
// Serial.printf("Chunk size = %d\n", c);
2023-02-10 19:31:59 -05:00
if (c <= (iBytesRead - iOffset))
{
memcpy(&pPage->ucLZW[pPage->iLZWSize], &p[iOffset], c);
pPage->iLZWSize += c;
iOffset += c;
}
else // partial chunk in our buffer
{
int iPartialLen = (iBytesRead - iOffset);
memcpy(&pPage->ucLZW[pPage->iLZWSize], &p[iOffset], iPartialLen);
pPage->iLZWSize += iPartialLen;
iOffset += iPartialLen;
(*pPage->pfnRead)(&pPage->GIFFile, &pPage->ucLZW[pPage->iLZWSize], c - iPartialLen);
pPage->iLZWSize += (c - iPartialLen);
}
if (c == 0)
pPage->bEndOfFrame = 1; // signal not to read beyond the end of the frame
}
2023-02-04 17:44:29 -05:00
// seeking on an SD card is VERY VERY SLOW, so use the data we've already read by de-chunking it
// in this case, there's too much data, so we have to seek backwards a bit
2023-02-10 19:31:59 -05:00
if (iOffset < iBytesRead)
{
2023-02-04 17:44:29 -05:00
// Serial.printf("Need to seek back %d bytes\n", iBytesRead - iOffset);
2023-02-10 19:31:59 -05:00
(*pPage->pfnSeek)(&pPage->GIFFile, iStartPos + iOffset); // position file to new spot
}
2023-02-04 17:44:29 -05:00
return 1; // we are now at the start of the chunk data
} /* GIFParseInfo() */
//
// Gather info about an animated GIF file
//
2023-02-10 19:31:59 -05:00
int GIF_getInfo(GIFIMAGE *pPage, GIFINFO *pInfo)
{
2023-02-04 17:44:29 -05:00
int iOff, iNumFrames;
int iDelay, iMaxDelay, iMinDelay, iTotalDelay;
int iReadAmount;
int iDataAvailable = 0;
int iDataRemaining = 0;
uint32_t lFileOff = 0;
int bDone = 0;
int bExt;
uint8_t c, *cBuf;
iMaxDelay = iTotalDelay = 0;
iMinDelay = 10000;
iNumFrames = 1;
iDataRemaining = pPage->GIFFile.iSize;
2023-02-10 19:31:59 -05:00
cBuf = (uint8_t *) pPage->ucFileBuf;
2023-02-04 17:44:29 -05:00
(*pPage->pfnSeek)(&pPage->GIFFile, 0);
iDataAvailable = (*pPage->pfnRead)(&pPage->GIFFile, cBuf, FILE_BUF_SIZE);
iDataRemaining -= iDataAvailable;
lFileOff += iDataAvailable;
iOff = 10;
c = cBuf[iOff]; // get info bits
iOff += 3; /* Skip flags, background color & aspect ratio */
2023-02-10 19:31:59 -05:00
if (c & 0x80) /* Deal with global color table */
{
2023-02-04 17:44:29 -05:00
c &= 7; /* Get the number of colors defined */
2023-02-10 19:31:59 -05:00
iOff += (2<<c)*3; /* skip color table */
2023-02-04 17:44:29 -05:00
}
2023-02-10 19:31:59 -05:00
while (!bDone) // && iNumFrames < MAX_FRAMES)
{
2023-02-04 17:44:29 -05:00
bExt = 1; /* skip extension blocks */
2023-02-10 19:31:59 -05:00
while (bExt && iOff < iDataAvailable)
{
if ((iDataAvailable - iOff) < 258) // need to read more data first
{
memmove(cBuf, &cBuf[iOff], (iDataAvailable-iOff)); // move existing data down
2023-02-04 17:44:29 -05:00
iDataAvailable -= iOff;
iOff = 0;
2023-02-10 19:31:59 -05:00
iReadAmount = (*pPage->pfnRead)(&pPage->GIFFile, &cBuf[iDataAvailable], FILE_BUF_SIZE-iDataAvailable);
2023-02-04 17:44:29 -05:00
iDataAvailable += iReadAmount;
iDataRemaining -= iReadAmount;
lFileOff += iReadAmount;
}
2023-02-10 19:31:59 -05:00
switch(cBuf[iOff])
2023-02-04 17:44:29 -05:00
{
case 0x3b: /* End of file */
/* we were fooled into thinking there were more pages */
iNumFrames--;
goto gifpagesz;
2023-02-10 19:31:59 -05:00
// F9 = Graphic Control Extension (fixed length of 4 bytes)
// FE = Comment Extension
// FF = Application Extension
// 01 = Plain Text Extension
2023-02-04 17:44:29 -05:00
case 0x21: /* Extension block */
2023-02-10 19:31:59 -05:00
if (cBuf[iOff+1] == 0xf9 && cBuf[iOff+2] == 4) // Graphic Control Extension
{
//cBuf[iOff+3]; // page disposition flags
iDelay = cBuf[iOff+4]; // delay low byte
iDelay |= ((uint16_t)(cBuf[iOff+5]) << 8); // delay high byte
if (iDelay < 2) // too fast, provide a default
2023-02-04 17:44:29 -05:00
iDelay = 2;
iDelay *= 10; // turn JIFFIES into milliseconds
iTotalDelay += iDelay;
2023-02-10 19:31:59 -05:00
if (iDelay > iMaxDelay) iMaxDelay = iDelay;
else if (iDelay < iMinDelay) iMinDelay = iDelay;
// (cBuf[iOff+6]; // transparent color index
2023-02-04 17:44:29 -05:00
}
iOff += 2; /* skip to length */
iOff += (int)cBuf[iOff]; /* Skip the data block */
iOff++;
2023-02-10 19:31:59 -05:00
// block terminator or optional sub blocks
2023-02-04 17:44:29 -05:00
c = cBuf[iOff++]; /* Skip any sub-blocks */
2023-02-10 19:31:59 -05:00
while (c)
{
iOff += (int)c;
c = cBuf[iOff++];
if ((iDataAvailable - iOff) < (c+258)) // need to read more data first
{
memmove(cBuf, &cBuf[iOff], (iDataAvailable-iOff)); // move existing data down
2023-02-04 17:44:29 -05:00
iDataAvailable -= iOff;
iOff = 0;
2023-02-10 19:31:59 -05:00
iReadAmount = (*pPage->pfnRead)(&pPage->GIFFile, &cBuf[iDataAvailable], FILE_BUF_SIZE-iDataAvailable);
2023-02-04 17:44:29 -05:00
iDataAvailable += iReadAmount;
iDataRemaining -= iReadAmount;
lFileOff += iReadAmount;
}
}
2023-02-10 19:31:59 -05:00
if (c != 0) // problem, we went past the end
{
2023-02-04 17:44:29 -05:00
iNumFrames--; // possible corrupt data; stop
goto gifpagesz;
}
break;
case 0x2c: /* Start of image data */
bExt = 0; /* Stop doing extension blocks */
break;
default:
2023-02-10 19:31:59 -05:00
/* Corrupt data, stop here */
2023-02-04 17:44:29 -05:00
iNumFrames--;
goto gifpagesz;
} // switch
} // while
2023-02-10 19:31:59 -05:00
if (iOff >= iDataAvailable) // problem
{
iNumFrames--; // possible corrupt data; stop
goto gifpagesz;
2023-02-04 17:44:29 -05:00
}
2023-02-10 19:31:59 -05:00
/* Start of image data */
c = cBuf[iOff+9]; /* Get the flags byte */
2023-02-04 17:44:29 -05:00
iOff += 10; /* Skip image position and size */
2023-02-10 19:31:59 -05:00
if (c & 0x80) /* Local color table */
{
2023-02-04 17:44:29 -05:00
c &= 7;
2023-02-10 19:31:59 -05:00
iOff += (2<<c)*3;
2023-02-04 17:44:29 -05:00
}
iOff++; /* Skip LZW code size byte */
2023-02-10 19:31:59 -05:00
if ((iDataAvailable - iOff) < (c+258)) // need to read more data first
{
if (iOff < iDataAvailable) {
memmove(cBuf, &cBuf[iOff], (iDataAvailable-iOff)); // move existing data down
iDataAvailable -= iOff;
iOff = 0;
} else { // already points beyond end
iOff -= iDataAvailable;
iDataAvailable = 0;
}
iReadAmount = (*pPage->pfnRead)(&pPage->GIFFile, &cBuf[iDataAvailable], FILE_BUF_SIZE-iDataAvailable);
iDataAvailable += iReadAmount;
iDataRemaining -= iReadAmount;
lFileOff += iReadAmount;
}
2023-02-04 17:44:29 -05:00
c = cBuf[iOff++];
2023-02-10 19:31:59 -05:00
while (c) /* While there are more data blocks */
{
if (iOff > (3*FILE_BUF_SIZE/4) && iDataRemaining > 0) /* Near end of buffer, re-align */
{
memmove(cBuf, &cBuf[iOff], (iDataAvailable-iOff)); // move existing data down
2023-02-04 17:44:29 -05:00
iDataAvailable -= iOff;
iOff = 0;
iReadAmount = (FILE_BUF_SIZE - iDataAvailable);
2023-02-10 19:31:59 -05:00
if (iReadAmount > iDataRemaining)
2023-02-04 17:44:29 -05:00
iReadAmount = iDataRemaining;
iReadAmount = (*pPage->pfnRead)(&pPage->GIFFile, &cBuf[iDataAvailable], iReadAmount);
iDataAvailable += iReadAmount;
iDataRemaining -= iReadAmount;
lFileOff += iReadAmount;
}
iOff += (int)c; /* Skip this data block */
// if ((int)lFileOff + iOff > pPage->GIFFile.iSize) // past end of file, stop
// {
// iNumFrames--; // don't count this page
// break; // last page is corrupted, don't use it
// }
c = cBuf[iOff++]; /* Get length of next */
}
/* End of image data, check for more pages... */
2023-02-10 19:31:59 -05:00
if (cBuf[iOff] == 0x3b || (iDataRemaining == 0 && (iDataAvailable - iOff) < 32))
{
2023-02-04 17:44:29 -05:00
bDone = 1; /* End of file has been reached */
2023-02-10 19:31:59 -05:00
}
else /* More pages to scan */
{
2023-02-04 17:44:29 -05:00
iNumFrames++;
2023-02-10 19:31:59 -05:00
// read new page data starting at this offset
if (pPage->GIFFile.iSize > FILE_BUF_SIZE && iDataRemaining > 0) // since we didn't read the whole file in one shot
{
memmove(cBuf, &cBuf[iOff], (iDataAvailable-iOff)); // move existing data down
2023-02-04 17:44:29 -05:00
iDataAvailable -= iOff;
iOff = 0;
iReadAmount = (FILE_BUF_SIZE - iDataAvailable);
2023-02-10 19:31:59 -05:00
if (iReadAmount > iDataRemaining)
2023-02-04 17:44:29 -05:00
iReadAmount = iDataRemaining;
iReadAmount = (*pPage->pfnRead)(&pPage->GIFFile, &cBuf[iDataAvailable], iReadAmount);
iDataAvailable += iReadAmount;
iDataRemaining -= iReadAmount;
lFileOff += iReadAmount;
}
}
} /* while !bDone */
gifpagesz:
pInfo->iFrameCount = iNumFrames;
pInfo->iMaxDelay = iMaxDelay;
pInfo->iMinDelay = iMinDelay;
pInfo->iDuration = iTotalDelay;
return 1;
} /* GIF_getInfo() */
//
// Unpack more chunk data for decoding
// returns 1 to signify more data available for this image
// 0 indicates there is no more data
//
2023-02-10 19:31:59 -05:00
static int GIFGetMoreData(GIFIMAGE *pPage)
{
2023-02-04 17:44:29 -05:00
int iDelta = (pPage->iLZWSize - pPage->iLZWOff);
unsigned char c = 1;
// move any existing data down
2023-02-10 19:31:59 -05:00
if (pPage->bEndOfFrame || iDelta >= (LZW_BUF_SIZE - MAX_CHUNK_SIZE) || iDelta <= 0)
2023-02-04 17:44:29 -05:00
return 1; // frame is finished or buffer is already full; no need to read more data
2023-02-10 19:31:59 -05:00
if (pPage->iLZWOff != 0)
{
2023-02-04 17:44:29 -05:00
// NB: memcpy() fails on some systems because the src and dest ptrs overlap
// so copy the bytes in a simple loop to avoid problems
2023-02-10 19:31:59 -05:00
for (int i=0; i<pPage->iLZWSize - pPage->iLZWOff; i++) {
pPage->ucLZW[i] = pPage->ucLZW[i + pPage->iLZWOff];
}
pPage->iLZWSize -= pPage->iLZWOff;
pPage->iLZWOff = 0;
2023-02-04 17:44:29 -05:00
}
2023-02-10 19:31:59 -05:00
while (c && pPage->GIFFile.iPos < pPage->GIFFile.iSize && pPage->iLZWSize < (LZW_BUF_SIZE-MAX_CHUNK_SIZE))
{
2023-02-04 17:44:29 -05:00
(*pPage->pfnRead)(&pPage->GIFFile, &c, 1); // current length
(*pPage->pfnRead)(&pPage->GIFFile, &pPage->ucLZW[pPage->iLZWSize], c);
pPage->iLZWSize += c;
}
2023-02-10 19:31:59 -05:00
if (c == 0) // end of frame
2023-02-04 17:44:29 -05:00
pPage->bEndOfFrame = 1;
2023-02-10 19:31:59 -05:00
return (c != 0 && pPage->GIFFile.iPos < pPage->GIFFile.iSize); // more data available?
2023-02-04 17:44:29 -05:00
} /* GIFGetMoreData() */
//
// Handle transparent pixels and disposal method
// Used only when a frame buffer is allocated
//
2023-02-10 19:31:59 -05:00
static void DrawNewPixels(GIFIMAGE *pPage, GIFDRAW *pDraw)
{
2023-02-04 17:44:29 -05:00
uint8_t *d, *s;
int x, iPitch = pPage->iCanvasWidth;
s = pDraw->pPixels;
d = (uint8_t*)&pPage->pFrameBuffer[pDraw->iX + (pDraw->y + pDraw->iY) * iPitch]; // dest pointer in our complete canvas buffer
2023-02-10 19:31:59 -05:00
if (pDraw->ucDisposalMethod == 2) // restore to background color
{
2023-02-04 17:44:29 -05:00
memset(d, pDraw->ucBackground, pDraw->iWidth);
}
// Apply the new pixels to the main image
2023-02-10 19:31:59 -05:00
if (pDraw->ucHasTransparency) // if transparency used
{
2023-02-04 17:44:29 -05:00
uint8_t c, ucTransparent = pDraw->ucTransparent;
2023-02-10 19:31:59 -05:00
for (x=0; x<pDraw->iWidth; x++)
2023-02-04 17:44:29 -05:00
{
c = *s++;
2023-02-10 19:31:59 -05:00
if (c != ucTransparent)
2023-02-04 17:44:29 -05:00
*d = c;
d++;
}
2023-02-10 19:31:59 -05:00
}
else
{
2023-02-04 17:44:29 -05:00
memcpy(d, s, pDraw->iWidth); // just overwrite the old pixels
}
} /* DrawNewPixels() */
//
// Convert current line of pixels through the palette
// to either RGB565 or RGB888 output
// Used only when a frame buffer has been allocated
//
2023-02-10 19:31:59 -05:00
static void ConvertNewPixels(GIFIMAGE *pPage, GIFDRAW *pDraw)
{
2023-02-04 17:44:29 -05:00
uint8_t *d, *s;
int x;
s = (uint8_t*)&pPage->pFrameBuffer[(pPage->iCanvasWidth * (pDraw->iY + pDraw->y)) + pDraw->iX];
d = (uint8_t*)&pPage->pFrameBuffer[pPage->iCanvasHeight * pPage->iCanvasWidth]; // point past bottom of frame buffer
2023-02-10 19:31:59 -05:00
if (pPage->ucPaletteType == GIF_PALETTE_RGB565_LE || pPage->ucPaletteType == GIF_PALETTE_RGB565_BE)
{
2023-02-04 17:44:29 -05:00
uint16_t *pPal, *pu16;
pPal = (uint16_t *)pDraw->pPalette;
pu16 = (uint16_t *)&pPage->pFrameBuffer[pPage->iCanvasHeight * pPage->iCanvasWidth];
2023-02-10 19:31:59 -05:00
for (x=0; x<pPage->iWidth; x++)
2023-02-04 17:44:29 -05:00
{
*pu16++ = pPal[*s++]; // convert to RGB565 pixels
}
2023-02-10 19:31:59 -05:00
}
else
{
2023-02-04 17:44:29 -05:00
uint8_t *pPal;
int pixel;
pPal = (uint8_t *)pDraw->pPalette;
2023-02-10 19:31:59 -05:00
for (x=0; x<pPage->iWidth; x++)
2023-02-04 17:44:29 -05:00
{
pixel = *s++;
*d++ = pPal[(pixel * 3) + 0]; // convert to RGB888 pixels
*d++ = pPal[(pixel * 3) + 1];
*d++ = pPal[(pixel * 3) + 2];
}
}
} /* ConvertNewPixels() */
//
// GIFMakePels
//
2023-02-10 19:31:59 -05:00
static void GIFMakePels(GIFIMAGE *pPage, unsigned int code)
{
2023-02-04 17:44:29 -05:00
int iPixCount;
unsigned short *giftabs;
unsigned char *buf, *s, *pEnd, *gifpels;
unsigned char ucNeedMore = 0;
/* Copy this string of sequential pixels to output buffer */
// iPixCount = 0;
s = pPage->ucFileBuf + FILE_BUF_SIZE; /* Pixels will come out in reversed order */
buf = pPage->ucLineBuf + (pPage->iWidth - pPage->iXCount);
giftabs = pPage->usGIFTable;
gifpels = &pPage->ucGIFPixels[PIXEL_LAST];
2023-02-10 19:31:59 -05:00
while (code < LINK_UNUSED)
{
if (s == pPage->ucFileBuf) /* Houston, we have a problem */
{
2023-02-04 17:44:29 -05:00
return; /* Exit with error */
}
*(--s) = gifpels[code];
code = giftabs[code];
}
iPixCount = (int)(intptr_t)(pPage->ucFileBuf + FILE_BUF_SIZE - s);
2023-02-10 19:31:59 -05:00
while (iPixCount && pPage->iYCount > 0)
{
if (pPage->iXCount > iPixCount) /* Pixels fit completely on the line */
{
// memcpy(buf, s, iPixCount);
// buf += iPixCount;
pEnd = buf + iPixCount;
while (buf < pEnd)
{
*buf++ = *s++;
}
2023-02-04 17:44:29 -05:00
pPage->iXCount -= iPixCount;
// iPixCount = 0;
2023-02-10 19:31:59 -05:00
if (ucNeedMore)
2023-02-04 17:44:29 -05:00
GIFGetMoreData(pPage); // check if we need to read more LZW data every 4 lines
return;
2023-02-10 19:31:59 -05:00
}
else /* Pixels cross into next line */
{
2023-02-04 17:44:29 -05:00
GIFDRAW gd;
pEnd = buf + pPage->iXCount;
2023-02-10 19:31:59 -05:00
while (buf < pEnd)
{
2023-02-04 17:44:29 -05:00
*buf++ = *s++;
}
iPixCount -= pPage->iXCount;
pPage->iXCount = pPage->iWidth; /* Reset pixel count */
// Prepare GIDRAW structure for callback
gd.iX = pPage->iX;
gd.iY = pPage->iY;
gd.iWidth = pPage->iWidth;
gd.iHeight = pPage->iHeight;
gd.pPixels = pPage->ucLineBuf;
gd.pPalette = (pPage->bUseLocalPalette) ? pPage->pLocalPalette : pPage->pPalette;
gd.pPalette24 = (uint8_t *)gd.pPalette; // just cast the pointer for RGB888
2023-02-10 19:31:59 -05:00
gd.ucIsGlobalPalette = pPage->bUseLocalPalette==1?0:1;
2023-02-04 17:44:29 -05:00
gd.y = pPage->iHeight - pPage->iYCount;
// Ugly logic to handle the interlaced line position, but it
// saves having to have another set of state variables
if (pPage->ucMap & 0x40) { // interlaced?
2023-02-10 19:31:59 -05:00
int height = pPage->iHeight-1;
if (gd.y > height / 2)
gd.y = gd.y * 2 - (height | 1);
else if (gd.y > height / 4)
gd.y = gd.y * 4 - ((height & ~1) | 2);
else if (gd.y > height / 8)
gd.y = gd.y * 8 - ((height & ~3) | 4);
else
gd.y = gd.y * 8;
2023-02-04 17:44:29 -05:00
}
2023-02-10 19:31:59 -05:00
gd.ucDisposalMethod = (pPage->ucGIFBits & 0x1c)>>2;
2023-02-04 17:44:29 -05:00
gd.ucTransparent = pPage->ucTransparent;
gd.ucHasTransparency = pPage->ucGIFBits & 1;
gd.ucBackground = pPage->ucBackground;
gd.pUser = pPage->pUser;
2023-02-10 19:31:59 -05:00
if (pPage->pFrameBuffer) // update the frame buffer
{
2023-02-04 17:44:29 -05:00
DrawNewPixels(pPage, &gd);
2023-02-10 19:31:59 -05:00
if (pPage->ucDrawType == GIF_DRAW_COOKED)
{
2023-02-04 17:44:29 -05:00
ConvertNewPixels(pPage, &gd); // prepare for output
gd.pPixels = (uint8_t*)&pPage->pFrameBuffer[pPage->iCanvasWidth * pPage->iCanvasHeight];
2023-02-04 17:44:29 -05:00
}
}
(*pPage->pfnDraw)(&gd); // callback to handle this line
pPage->iYCount--;
buf = pPage->ucLineBuf;
2023-02-10 19:31:59 -05:00
if ((pPage->iYCount & 3) == 0) // since we support only small images...
2023-02-04 17:44:29 -05:00
ucNeedMore = 1;
}
} /* while */
2023-02-10 19:31:59 -05:00
if (ucNeedMore)
2023-02-04 17:44:29 -05:00
GIFGetMoreData(pPage); // check if we need to read more LZW data every 4 lines
return;
} /* GIFMakePels() */
//
// Macro to extract a variable length code
//
#define GET_CODE if (bitnum > (REGISTER_WIDTH - codesize)) { pImage->iLZWOff += (bitnum >> 3); \
2023-02-10 19:31:59 -05:00
bitnum &= 7; ulBits = INTELLONG(&p[pImage->iLZWOff]); } \
code = (unsigned short) (ulBits >> bitnum); /* Read a 32-bit chunk */ \
code &= sMask; bitnum += codesize;
2023-02-04 17:44:29 -05:00
//
// Decode LZW into an image
//
2023-02-10 19:31:59 -05:00
static int DecodeLZW(GIFIMAGE *pImage, int iOptions)
{
2023-02-04 17:44:29 -05:00
int i, bitnum;
unsigned short oldcode, codesize, nextcode, nextlim;
unsigned short *giftabs, cc, eoi;
signed short sMask;
unsigned char *gifpels, *p;
// int iStripSize;
2023-02-10 19:31:59 -05:00
//unsigned char **index;
2023-02-04 17:44:29 -05:00
uint32_t ulBits;
unsigned short code;
(void)iOptions; // not used for now
// if output can be used for string table, do it faster
// if (bGIF && (OutPage->cBitsperpixel == 8 && ((OutPage->iWidth & 3) == 0)))
// return PILFastLZW(InPage, OutPage, bGIF, iOptions);
p = pImage->ucLZW; // un-chunked LZW data
sMask = 0xffff << (pImage->ucCodeStart + 1);
sMask = 0xffff - sMask;
cc = (sMask >> 1) + 1; /* Clear code */
eoi = cc + 1;
giftabs = pImage->usGIFTable;
gifpels = pImage->ucGIFPixels;
pImage->iYCount = pImage->iHeight; // count down the lines
pImage->iXCount = pImage->iWidth;
bitnum = 0;
pImage->iLZWOff = 0; // Offset into compressed data
GIFGetMoreData(pImage); // Read some data to start
// Initialize code table
// this part only needs to be initialized once
for (i = 0; i < cc; i++)
{
2023-02-10 19:31:59 -05:00
gifpels[PIXEL_FIRST + i] = gifpels[PIXEL_LAST + i] = (unsigned short) i;
2023-02-04 17:44:29 -05:00
giftabs[i] = LINK_END;
}
init_codetable:
codesize = pImage->ucCodeStart + 1;
sMask = 0xffff << (pImage->ucCodeStart + 1);
sMask = 0xffff - sMask;
nextcode = cc + 2;
2023-02-10 19:31:59 -05:00
nextlim = (unsigned short) ((1 << codesize));
2023-02-04 17:44:29 -05:00
// This part of the table needs to be reset multiple times
2023-02-10 19:31:59 -05:00
memset(&giftabs[cc], LINK_UNUSED, (4096 - cc)*sizeof(short));
2023-02-04 17:44:29 -05:00
ulBits = INTELLONG(&p[pImage->iLZWOff]); // start by reading 4 bytes of LZW data
GET_CODE
2023-02-10 19:31:59 -05:00
if (code == cc) // we just reset the dictionary, so get another code
{
GET_CODE
2023-02-04 17:44:29 -05:00
}
oldcode = code;
GIFMakePels(pImage, code); // first code is output as the first pixel
// Main decode loop
2023-02-10 19:31:59 -05:00
while (code != eoi && pImage->iYCount > 0) // && y < pImage->iHeight+1) /* Loop through all lines of the image (or strip) */
{
2023-02-04 17:44:29 -05:00
GET_CODE
2023-02-10 19:31:59 -05:00
if (code == cc) /* Clear code?, and not first code */
2023-02-04 17:44:29 -05:00
goto init_codetable;
2023-02-10 19:31:59 -05:00
if (code != eoi)
{
if (nextcode < nextlim) // for deferred cc case, don't let it overwrite the last entry (fff)
{
giftabs[nextcode] = oldcode;
gifpels[PIXEL_FIRST + nextcode] = gifpels[PIXEL_FIRST + oldcode];
if (giftabs[code] == LINK_UNUSED) /* Old code */
gifpels[PIXEL_LAST + nextcode] = gifpels[PIXEL_FIRST + oldcode];
else
gifpels[PIXEL_LAST + nextcode] = gifpels[PIXEL_FIRST + code];
}
nextcode++;
if (nextcode >= nextlim && codesize < 12)
{
codesize++;
nextlim <<= 1;
sMask = (sMask << 1) | 1;
2023-02-04 17:44:29 -05:00
}
GIFMakePels(pImage, code);
oldcode = code;
}
} /* while not end of LZW code stream */
return 0;
2023-02-10 19:31:59 -05:00
//gif_forced_error:
2023-02-04 17:44:29 -05:00
// free(pImage->pPixels);
// pImage->pPixels = NULL;
// return -1;
} /* DecodeLZW() */
2023-02-10 19:31:59 -05:00
void GIF_setDrawCallback(GIFIMAGE *pGIF, GIF_DRAW_CALLBACK *pfnDraw)
{
pGIF->pfnDraw = pfnDraw;
2023-02-04 17:44:29 -05:00
} /* GIF_setDrawCallback() */
//
// Scale 2 scanlines down by 50% with pixel averaging
// writes new values over previous line
// expects RGB565 little endian pixels as input
//
2023-02-10 19:31:59 -05:00
void GIF_scaleHalf(uint16_t *pCurrent, uint16_t *pPrev, int iWidth, int bBigEndian)
{
int x;
uint16_t *d = pPrev;
uint32_t gSum, rbSum, pix0,pix1,pix2,pix3;
const uint32_t RBMask = 0xf81f, GMask = 0x7e0;
2023-02-04 17:44:29 -05:00
2023-02-10 19:31:59 -05:00
for (x=0; x<iWidth; x+=2)
{
pix0 = pCurrent[0]; pix1 = pCurrent[1];
pix2 = pPrev[0]; pix3 = pPrev[1];
pCurrent += 2; pPrev += 2;
gSum = (pix0 & GMask) + (pix1 & GMask) + (pix2 & GMask) + (pix3 & GMask);
gSum = ((gSum + 0x40) >> 2) & GMask; // for rounding towards 1
rbSum = (pix0 & RBMask) + (pix1 & RBMask) + (pix2 & RBMask) + (pix3 & RBMask);
rbSum = ((rbSum + 0x1002) >> 2) & RBMask;
if (bBigEndian)
*d++ = __builtin_bswap16((uint16_t)(gSum + rbSum));
else
*d++ = (uint16_t)(gSum + rbSum); // store finished pixel
} // for x
2023-02-04 17:44:29 -05:00
} /* GIF_scaleHalf() */