├── LICENSE.txt ├── README.md ├── examples ├── SmartMatrixGifPlayer │ ├── FilenameFunctions.cpp │ ├── FilenameFunctions.h │ └── SmartMatrixGifPlayer.ino └── SmartMatrixGifProfiling │ ├── FilenameFunctions.cpp │ ├── FilenameFunctions.h │ └── SmartMatrixGifProfiling.ino ├── extras └── gifs │ ├── README.txt │ ├── bigbuck1.gif │ ├── bigbuck2.gif │ ├── chasm1.gif │ ├── explode2.gif │ ├── fight2.gif │ ├── star.gif │ └── wifi.gif ├── library.properties └── src ├── GifDecoder.h ├── GifDecoder_Impl.h └── LzwDecoder_Impl.h /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/README.md -------------------------------------------------------------------------------- /examples/SmartMatrixGifPlayer/FilenameFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/examples/SmartMatrixGifPlayer/FilenameFunctions.cpp -------------------------------------------------------------------------------- /examples/SmartMatrixGifPlayer/FilenameFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/examples/SmartMatrixGifPlayer/FilenameFunctions.h -------------------------------------------------------------------------------- /examples/SmartMatrixGifPlayer/SmartMatrixGifPlayer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/examples/SmartMatrixGifPlayer/SmartMatrixGifPlayer.ino -------------------------------------------------------------------------------- /examples/SmartMatrixGifProfiling/FilenameFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/examples/SmartMatrixGifProfiling/FilenameFunctions.cpp -------------------------------------------------------------------------------- /examples/SmartMatrixGifProfiling/FilenameFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/examples/SmartMatrixGifProfiling/FilenameFunctions.h -------------------------------------------------------------------------------- /examples/SmartMatrixGifProfiling/SmartMatrixGifProfiling.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/examples/SmartMatrixGifProfiling/SmartMatrixGifProfiling.ino -------------------------------------------------------------------------------- /extras/gifs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/extras/gifs/README.txt -------------------------------------------------------------------------------- /extras/gifs/bigbuck1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/extras/gifs/bigbuck1.gif -------------------------------------------------------------------------------- /extras/gifs/bigbuck2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/extras/gifs/bigbuck2.gif -------------------------------------------------------------------------------- /extras/gifs/chasm1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/extras/gifs/chasm1.gif -------------------------------------------------------------------------------- /extras/gifs/explode2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/extras/gifs/explode2.gif -------------------------------------------------------------------------------- /extras/gifs/fight2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/extras/gifs/fight2.gif -------------------------------------------------------------------------------- /extras/gifs/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/extras/gifs/star.gif -------------------------------------------------------------------------------- /extras/gifs/wifi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/extras/gifs/wifi.gif -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/library.properties -------------------------------------------------------------------------------- /src/GifDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/src/GifDecoder.h -------------------------------------------------------------------------------- /src/GifDecoder_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/src/GifDecoder_Impl.h -------------------------------------------------------------------------------- /src/LzwDecoder_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelmatix/AnimatedGIFs/HEAD/src/LzwDecoder_Impl.h --------------------------------------------------------------------------------