From bba0868e8634bf42387590c7faa012741679d34a Mon Sep 17 00:00:00 2001 From: Laurence Bank Date: Mon, 4 Mar 2024 17:33:11 +0000 Subject: [PATCH] Updated to new library version --- README.md | 2 +- library.properties | 2 +- src/AnimatedGIF.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0e70353..15affb1 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ I started working with image and video files around 1989 and soon turned my inte *** NEW *** ----------- -The latest version brings much more speed to all modes of operation as well as a new way to decode (Turbo mode) which trades more memory for more speed. I took another look at the decoder and found some creative ways of speeding it up. I also wrote a new decode mode (Turbo) which uses the output image as the dictionary. It needs another 24K of RAM and can accelerate the decoding by 2-30x depending on the target system and image. I also added support for 32-bpp output and the GIFDraw callback is now optional. +The latest version brings much more speed to all modes of operation as well as a new way to decode (Turbo mode) which trades more memory for more speed. I took another look at the decoder and found some creative ways of speeding it up. I also wrote a new decode mode (Turbo) which uses the output image as the dictionary. It needs another 32K of RAM and can accelerate the decoding by 2-30x depending on the target system and image. I also added support for 32-bpp output and the GIFDraw callback is now optional. There is also the option to request "COOKED" output which means that the library will handle merging new frames onto the canvas and your GIFDraw callback gets pixels ready to for display. MCU Accomodations ----------------- diff --git a/library.properties b/library.properties index feb281f..d28a59f 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=AnimatedGIF -version=1.4.7 +version=2.0.0 author=Larry Bank maintainer=Larry Bank sentence=Universal GIF player for MCUs with at least 32K of RAM. diff --git a/src/AnimatedGIF.h b/src/AnimatedGIF.h index ce7dcaa..546e555 100644 --- a/src/AnimatedGIF.h +++ b/src/AnimatedGIF.h @@ -40,7 +40,7 @@ // // ** NEW ** // Turbo mode added Feb 18, 2024. This option decodes images -// up to 30x faster if there is enough RAM (48K + full framebuffer) +// up to 30x faster if there is enough RAM (32K + full framebuffer) // /* GIF Defines and variables */