-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGifDecoder_Impl.h
473 lines (406 loc) · 16.7 KB
/
GifDecoder_Impl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
/*
Animated GIFs Display Code for SmartMatrix and 32x32 RGB LED Panels
This file contains code to parse animated GIF files
Written by: Craig A. Lindley
Copyright (c) 2014 Craig A. Lindley
Minor modifications by Louis Beaudoin (pixelmatix)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
//#define GIFDEBUG 2
#include <Arduino.h>
#include "GifDecoder.h"
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::screenClearCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::updateScreenCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
pixel_callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::drawPixelCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
line_callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::drawLineCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::startDrawingCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
file_seek_callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::fileSeekCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
file_position_callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::filePositionCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
file_read_callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::fileReadCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
file_read_block_callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::fileReadBlockCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
file_size_callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::fileSizeCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
palette_callback GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::paletteCallback;
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::GifDecoder(void) {
if(!useMalloc)
gif = (AnimatedGIF*)buffer;
else
gif = (AnimatedGIF*)malloc(sizeof(AnimatedGIF));
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setStartDrawingCallback(
callback f) {
startDrawingCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setUpdateScreenCallback(
callback f) {
updateScreenCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setDrawPixelCallback(
pixel_callback f) {
drawPixelCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setDrawLineCallback(
line_callback f) {
drawLineCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setScreenClearCallback(
callback f) {
screenClearCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setFileSeekCallback(
file_seek_callback f) {
fileSeekCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setFilePositionCallback(
file_position_callback f) {
filePositionCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setFileReadCallback(
file_read_callback f) {
fileReadCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setFileSizeCallback(
file_size_callback f) {
fileSizeCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setFileReadBlockCallback(file_read_block_callback f) {
fileReadBlockCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::setPaletteCallback(palette_callback f) {
paletteCallback = f;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::DrawPixelRow(int startX, int y, int numPixels, rgb_24 * data) {
for(int i=0; i<numPixels; i++)
{
if(drawPixelCallback)
(*drawPixelCallback)(startX + i, y, data->red, data->green, data->blue);
data++;
}
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::GIFDraw(GIFDRAW *pDraw) {
int x_offset = 0;
int y_offset = 0;
uint8_t *s;
//uint16_t *d, *usPalette, usTemp[320];
int x, y, iWidth;
rgb_24 *d, *usPalette, usTemp[320];
iWidth = pDraw->iWidth;
if (iWidth > DISPLAY_WIDTH)
iWidth = DISPLAY_WIDTH;
usPalette = (rgb_24*)pDraw->pPalette;
if(paletteCallback)
paletteCallback(usPalette,pDraw->ucIsGlobalPalette==1);
y = pDraw->iY + pDraw->y; // current line
s = pDraw->pPixels;
if (pDraw->ucDisposalMethod == 2) // restore to background color
{
for (x=0; x<iWidth; x++)
{
if (s[x] == pDraw->ucTransparent)
s[x] = pDraw->ucBackground;
}
pDraw->ucHasTransparency = 0;
}
// Apply the new pixels to the main image
if (pDraw->ucHasTransparency) // if transparency used
{
uint8_t *pEnd, c, ucTransparent = pDraw->ucTransparent;
int x, iCount;
pEnd = s + iWidth;
x = 0;
iCount = 0; // count non-transparent pixels
while(x < iWidth)
{
c = ucTransparent-1;
d = usTemp;
while (c != ucTransparent && s < pEnd)
{
c = *s++;
if (c == ucTransparent) // done, stop
{
s--; // back up to treat it like transparent
}
else // opaque
{
*d++ = usPalette[c];
iCount++;
}
} // while looking for opaque pixels
if (iCount) // any opaque pixels?
{
DrawPixelRow(pDraw->iX+x+x_offset, y+y_offset, iCount, (rgb_24 *)usTemp);
x += iCount;
iCount = 0;
}
// no, look for a run of transparent pixels
c = ucTransparent;
while (c == ucTransparent && s < pEnd)
{
c = *s++;
if (c == ucTransparent)
iCount++;
else
s--;
}
if (iCount)
{
x += iCount; // skip these
iCount = 0;
}
}
}
else
{
s = pDraw->pPixels;
// Translate the 8-bit pixels through the RGB565 palette (already byte reversed)
for (x=0; x<iWidth; x++)
usTemp[x] = usPalette[*s++];
DrawPixelRow(pDraw->iX+x_offset, y+y_offset, iWidth, (rgb_24 *)usTemp);
}
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void * GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::GIFOpenFile(const char *fname, int32_t *pSize) {
// need to get file size, not part of current FilenameFunctions API
if(fileSizeCallback)
*pSize = fileSizeCallback();
// we don't use GIFFile.fHandle, but AnimatedGIF wants to make sure the handle isn't NULL, return a non-zero number
return (void*)1;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
void GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::GIFCloseFile(void *pHandle) {
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
int32_t GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::GIFReadFile(GIFFILE *pFile, uint8_t *pBuf, int32_t iLen) {
int32_t iBytesRead;
iBytesRead = iLen;
//File *f = static_cast<File *>(pFile->fHandle);
// Note: If you read a file all the way to the last byte, seek() stops working
if ((pFile->iSize - pFile->iPos) < iLen)
iBytesRead = pFile->iSize - pFile->iPos - 1; // <-- ugly work-around
if (iBytesRead <= 0)
return 0;
//Serial.print("fileread: ");
//Serial.print(iBytesRead);
iBytesRead = (int32_t)fileReadBlockCallback(pBuf, iBytesRead);
//Serial.print(",");
//Serial.println(iBytesRead);
pFile->iPos = (int32_t)filePositionCallback();
return iBytesRead;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
int32_t GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::GIFSeekFile(GIFFILE *pFile, int32_t iPosition) {
fileSeekCallback(iPosition);
pFile->iPos = (int32_t)filePositionCallback();
return pFile->iPos;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
int GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::startDecoding(void) {
usingFileCallbacks = true;
if(!beginCalled) {
beginCalled = true;
// using RGB888 = rgb24 palette instead of default RGB565
gif->begin(BIG_ENDIAN_PIXELS, GIF_PALETTE_RGB888);
}
// check for callbacks working first
if((!screenClearCallback || !updateScreenCallback || !drawPixelCallback) ||
(usingFileCallbacks && (!fileSeekCallback || !filePositionCallback ||
!fileReadCallback || !fileReadBlockCallback || !fileSizeCallback))) {
Serial.println("Error: missing a callback function");
return ERROR_MISSING_CALLBACK_FUNCTION;
}
frameCount = 0;
frameNumber = 0;
cycleNumber = 0;
cycleTime = 0;
frameStartTime = micros();
screenClearCallback();
// file is already open, and we don't know the name, send a 0-length string instead
if (gif->open("", GIFOpenFile, GIFCloseFile, GIFReadFile, GIFSeekFile, GIFDraw))
{
Serial.printf("Successfully opened GIF; Canvas size = %d x %d\n", gif->getCanvasWidth(), gif->getCanvasHeight());
#if 0
GIFINFO gi;
if (gif->getInfo(&gi)) {
Serial.printf("frame count: %d\n", gi.iFrameCount);
Serial.printf("duration: %d ms\n", gi.iDuration);
Serial.printf("max delay: %d ms\n", gi.iMaxDelay);
Serial.printf("min delay: %d ms\n", gi.iMinDelay);
}
#endif
Serial.flush();
} else {
Serial.print("open failed: ");
Serial.println(gif->getLastError());
return translateGifErrorCode(gif->getLastError());
}
return ERROR_NONE;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
int GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::startDecoding(uint8_t *pData, int iDataSize) {
usingFileCallbacks = false;
// we need these again to open the file next cycle
gifPData = pData;
gifIDataSize = iDataSize;
if(!beginCalled) {
beginCalled = true;
// using RGB888 = rgb24 palette instead of default RGB565
gif->begin(BIG_ENDIAN_PIXELS, GIF_PALETTE_RGB888);
}
// check for callbacks working first
if(!screenClearCallback || !updateScreenCallback || !drawPixelCallback) {
Serial.println("Error: missing a callback function");
return ERROR_MISSING_CALLBACK_FUNCTION;
}
frameCount = 0;
frameNumber = 0;
cycleNumber = 0;
cycleTime = 0;
frameStartTime = micros();
screenClearCallback();
// file is already open, and we don't know the name, send a 0-length string instead
if (gif->open(gifPData, gifIDataSize, GIFDraw))
{
Serial.printf("Successfully opened GIF; Canvas size = %d x %d\n", gif->getCanvasWidth(), gif->getCanvasHeight());
#if 0
GIFINFO gi;
if (gif->getInfo(&gi)) {
Serial.printf("frame count: %d\n", gi.iFrameCount);
Serial.printf("duration: %d ms\n", gi.iDuration);
Serial.printf("max delay: %d ms\n", gi.iMaxDelay);
Serial.printf("min delay: %d ms\n", gi.iMinDelay);
}
#endif
Serial.flush();
} else {
Serial.print("open failed: ");
Serial.println(gif->getLastError());
return translateGifErrorCode(gif->getLastError());
}
return ERROR_NONE;
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
int GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::translateGifErrorCode(int code) {
switch (gif->getLastError()) {
case GIF_SUCCESS:
return ERROR_NONE;
case GIF_DECODE_ERROR:
return ERROR_GIF_DECODE_ERROR;
case GIF_TOO_WIDE:
return ERROR_GIF_TOO_WIDE;
case GIF_INVALID_PARAMETER:
return ERROR_GIF_INVALID_PARAMETER;
case GIF_UNSUPPORTED_FEATURE:
return ERROR_GIF_UNSUPPORTED_FEATURE;
case GIF_FILE_NOT_OPEN:
return ERROR_FILEOPEN;
case GIF_EARLY_EOF:
return ERROR_GIF_EARLY_EOF;
case GIF_EMPTY_FRAME:
return ERROR_GIF_EMPTY_FRAME;
case GIF_BAD_FILE:
return ERROR_BADGIFFORMAT;
default:
return -99;
}
}
template <int maxGifWidth, int maxGifHeight, int lzwMaxBits, bool useMalloc>
int GifDecoder<maxGifWidth, maxGifHeight, lzwMaxBits, useMalloc>::decodeFrame(bool delayAfterDecode) {
// Parse gif data
int frameStatus;
// check for callbacks working first - this is inefficient, but it may helpful temporarily with the API change
if((!screenClearCallback || !updateScreenCallback || !drawPixelCallback) ||
(usingFileCallbacks && (!fileSeekCallback || !filePositionCallback ||
!fileReadCallback || !fileReadBlockCallback || !fileSizeCallback))) {
Serial.println("Error: missing a callback function");
return ERROR_MISSING_CALLBACK_FUNCTION;
}
frameStatus = gif->playFrame(delayAfterDecode, &frameDelay_ms);
if(frameStatus < 0) {
Serial.print("playFrame failed: ");
Serial.println(gif->getLastError());
return translateGifErrorCode(gif->getLastError());
}
// only run this code if a new frame was processed, otherwise we got error GIF_EMPTY_FRAME
if(gif->getLastError() == GIF_SUCCESS) {
if(updateScreenCallback)
(*updateScreenCallback)();
frameNumber++;
// only track cycleTime on first frame
if(!cycleNumber)
cycleTime += frameDelay_ms;
}
// if done parsing
if (frameStatus == 0) {
frameCount = frameNumber;
frameNumber = 0;
cycleNumber++;
frameStartTime = micros();
if(usingFileCallbacks) {
fileSeekCallback(0);
// file is already open, and we don't know the name, send a 0-length string instead
gif->open("", GIFOpenFile, GIFCloseFile, GIFReadFile, GIFSeekFile, GIFDraw);
#if 0
// Used for debugging only - getInfo parses an einter GIF, introducing a large delay so it can't be used normally
GIFINFO gi;
if (gif->getInfo(&gi)) {
Serial.printf("frame count: %d\n", gi.iFrameCount);
Serial.printf("duration: %d ms\n", gi.iDuration);
Serial.printf("max delay: %d ms\n", gi.iMaxDelay);
Serial.printf("min delay: %d ms\n", gi.iMinDelay);
}
#endif
} else {
gif->open(gifPData, gifIDataSize, GIFDraw);
#if 0
// Used for debugging only - getInfo parses an einter GIF, introducing a large delay so it can't be used normally
GIFINFO gi;
if (gif->getInfo(&gi)) {
Serial.printf("frame count: %d\n", gi.iFrameCount);
Serial.printf("duration: %d ms\n", gi.iDuration);
Serial.printf("max delay: %d ms\n", gi.iMaxDelay);
Serial.printf("min delay: %d ms\n", gi.iMinDelay);
}
#endif
}
return ERROR_DONE_PARSING;
}
return ERROR_NONE;
}