diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-06-13 20:22:59 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-06-13 20:22:59 +0000 |
commit | ba2bd5533ea7b4847464e5f86cb2eab3d3200df8 (patch) | |
tree | ecd86bf22582c9892da0c3b81004b5f00fb60c20 | |
parent | 8d79795203933f4417091d25d538b6a0d4e48e72 (diff) | |
download | gdk-pixbuf-ba2bd5533ea7b4847464e5f86cb2eab3d3200df8.tar.gz |
Use libjpeg in buffered-image mode in order to incrementally display
* io-jpeg.c: Use libjpeg in buffered-image mode in order to
incrementally display incrementally loaded progressive jpegs.
-rw-r--r-- | gdk-pixbuf/ChangeLog | 5 | ||||
-rw-r--r-- | gdk-pixbuf/io-jpeg.c | 15 |
2 files changed, 5 insertions, 15 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index acedc8034..be7ddaf1d 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,8 @@ +2002-06-13 Matthias Clasen <maclas@gmx.de> + + * io-jpeg.c: Use libjpeg in buffered-image mode in order to + incrementally display incrementally loaded progressive jpegs. + 2002-06-07 Federico Mena Quintero <federico@ximian.com> * io-bmp.c (lsb_32): diff --git a/gdk-pixbuf/io-jpeg.c b/gdk-pixbuf/io-jpeg.c index a2b3b7769..9e7aed247 100644 --- a/gdk-pixbuf/io-jpeg.c +++ b/gdk-pixbuf/io-jpeg.c @@ -26,21 +26,6 @@ */ -/* - Progressive file loading notes (11/03/1999) <drmike@redhat.com>... - - These are issues I know of and will be dealing with shortly: - - - Currently does not handle progressive jpegs - this - requires a change in the way image_load_increment () calls - libjpeg. Progressive jpegs are rarer but I will add this - support asap. - - - error handling is not as good as it should be - - */ - - #include <config.h> #include <stdio.h> #include <stdlib.h> |