Glenn Randers-Pehrson
61616abef2
Fixed cut-and-paste error in contrib/pngminim/preader/README
...
"pngminus" should be "gregbook"
2009-05-18 15:19:29 -05:00
Glenn Randers-Pehrson
bb1fcd1ba8
Fixed a glitch in contrib/pngminim/preader/README.
2009-05-18 14:57:07 -05:00
Glenn Randers-Pehrson
6d65121993
Add contrib/pngminim/preader files
...
(README, gather.sh, makefile.std, and pngusr.h)
2009-05-18 14:50:48 -05:00
Glenn Randers-Pehrson
ecf0bffb79
Added contrib/pngminim/preader demo of gregbook/rpng2-x with embedded libpng
...
also minor editing of encoder/pngusr.h and decoder/pngusr.h
2009-05-18 14:46:35 -05:00
Glenn Randers-Pehrson
af2ea0a1f2
Revise ANNOUNCE to reflect conditional compile of png_read_finish_row().
2009-05-18 14:43:36 -05:00
Glenn Randers-Pehrson
286467db82
Restored compiling png_combine_row() for progressive readers.
...
Only png_read_finish_row() can be omitted.
2009-05-18 13:40:23 -05:00
Glenn Randers-Pehrson
6b60a31ebf
Restore png_memset() call
...
This stuff should be handled in the APNG fork.
2009-05-18 11:55:55 -05:00
Glenn Randers-Pehrson
54028e5943
Revert "png_reset_prev_row" from png.h and pngrutil.c
...
This should be handled in the APNG fork, not in libpng proper.
2009-05-18 11:49:19 -05:00
Glenn Randers-Pehrson
5902059c7c
Conditionally compile functions only used by sequential readers
...
png_combine_row() and png_read_finish_row() are not used by progressive
PNG readers.
2009-05-18 10:54:11 -05:00
Glenn Randers-Pehrson
580f4f5561
Revert "Set png_ptr->old_prev_row_size=0 in pngpread.c and pngrutil.c"
...
This should be handled in the APNG fork instead of in libpng proper.
This reverts commit ee59a9f9f01ecc319ba33b561662b29a4af2abad.
2009-05-18 10:40:33 -05:00
Glenn Randers-Pehrson
0c062e839d
Conditionally compile png_combine_row() and png_read_finish_row()
...
which are only used by sequential PNG readers. This can save some
resources in applications that only do progressive reading.
2009-05-18 10:31:21 -05:00
Glenn Randers-Pehrson
0fcbf05b6d
Revert "Set png_ptr->old_prev_row_size=0 to force prev_row to be cleared"
...
This reverts commit f4276c36c93e9a257f0780a3590886d5fa411f1d.
2009-05-18 10:18:00 -05:00
Glenn Randers-Pehrson
f4276c36c9
Set png_ptr->old_prev_row_size=0 to force prev_row to be cleared
2009-05-16 08:47:20 -05:00
Glenn Randers-Pehrson
ba05bddf92
Relocate misplaced #endif directives in pngwrite.c
...
having to do with sCAL chunk handling
2009-05-16 08:40:25 -05:00
Glenn Randers-Pehrson
ee59a9f9f0
Set png_ptr->old_prev_row_size=0 in pngpread.c and pngrutil.c
...
This forces the prev_row array to be cleared before the first
row of each image and interlace pass.
2009-05-16 07:32:28 -05:00
Glenn Randers-Pehrson
7654682c25
Bump version to libpng-1.4.0beta60
2009-05-16 07:25:42 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
7a63d75a83
Fixed typo in libpng documentation: AVE filter should be AVG filter.
2009-05-15 20:56:43 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
da3f74a70e
Bump version to libpng-1.2.37beta02
2009-05-15 20:53:04 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
b1c0d33128
Housecleaning: revise identation and comments to meet libpng coding style.
2009-05-15 20:39:34 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
9a692c0769
Fix typos in libpng*.txt: AVE filter should be AVG filter
2009-05-15 20:38:11 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
11a3c7b50a
Bump version to 1.4.0beta59
2009-05-15 20:33:24 -05:00
Glenn Randers-Pehrson
acfe7dc475
Imported from libpng-1.4.0beta58.tar
v1.4.0beta58
2009-05-14 05:33:33 -05:00
Glenn Randers-Pehrson
5f26656fc5
Imported from libpng-1.2.37beta01.tar
v1.2.37beta01
2009-05-14 05:23:07 -05:00
Glenn Randers-Pehrson
64548deafc
Reformatted comments in example.c
...
Added advice about setting pointers to NULL after png_free(),
capitalized sentences, reformatted long comments in libpng style.
2009-05-13 15:23:03 -05:00
Glenn Randers-Pehrson
2f76e90d1a
Reformatted comments in example.c
...
Added advice about setting pointers to NULL after png_free(),
capitalized sentences, reformatted long comments in libpng style.
2009-05-13 15:20:53 -05:00
Glenn Randers-Pehrson
1296329f02
Revised commentary in example.c
2009-05-13 07:42:05 -05:00
Glenn Randers-Pehrson
640b7d514d
Merged example.c with libpng-1.2.37beta01
...
(from the git master branch)
2009-05-13 07:33:22 -05:00
Glenn Randers-Pehrson
e38b432846
Clarified usage of sig_bit as struct vs sig_bit_p as pointer in example.c
...
sig_bit was not declared in write_png() and was used differently from
sig_bit in read_png(), as reported by Vincent Torri. This update changes
sig_bit to sig_bit_p in read_png() and declares sig_bit in write_png().
2009-05-13 05:18:48 -05:00
Glenn Randers-Pehrson
549a5101e7
Fixed inconsistency in use of "row_bytes" in pngrutil.c
...
The memset() should use "row_bytes" instead of "png_ptr->rowbytes".
This bug was introduced in libpng-1.2.36.
2009-05-12 05:49:10 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
031a8648cb
Merged scripts/makefiles and other scripts with libpng-1.4.0beta57.
...
These are mostly just cosmetic changes.
2009-05-07 17:12:33 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
a8476a8404
Bump internal version to libpng-1.2.37beta01.
2009-05-07 17:09:14 -05:00
Glenn Randers-Pehrson
25c8491fc8
Imported from libpng-1.2.36.tar
v1.2.36
2009-05-07 10:59:02 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
d603c89397
Revert typo in scripts/makefile.mingw
...
Should refer to "pngwin.def" instead of "pngw32.def"
2009-05-03 05:47:20 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
cdd4330edc
Revert typo in scripts/makefile.mingw
...
(should refer to pngwin.def not pngw32.def)
2009-05-03 05:44:06 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
389c655a5a
Bump internal version to bump-libpng-to-1.4.0beta58
2009-05-03 05:40:08 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
31cafa0a3e
Fix typo about autoconf version again
...
There are too many master directories floating around now...
2009-05-02 16:08:06 -05:00
Glenn Randers-Pehrson
3011945d6f
Imported from libpng-1.4.0beta57.tar
v1.4.0beta57
2009-05-02 15:58:33 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
7ecf7bdc6b
Removed support of pngprefs.h from makefiles.
...
It is no longer used since the MMX support was removed.
2009-05-02 15:36:08 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
4cd137127f
Fix typo in CHANGES and ANNOUNCE (mentioned wrong versions of autoconf).
2009-05-02 15:28:09 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
0a2547e83d
Rebuilt configure scripts with autoconf 2.63
2009-05-02 15:25:36 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
d209ec76b2
Remove unused png_freeptr() prototype ... again.
2009-05-02 15:15:46 -05:00
Glenn Randers-Pehrson glennrp@comcast.net
92d9534c1a
Bump internal versioning to libpng-1.4.0beta57
2009-05-02 15:12:50 -05:00
Glenn Randers-Pehrson
d0d637dd47
Imported from libpng-1.2.36rc01.tar
2009-04-30 15:29:29 -05:00
Glenn Randers-Pehrson
1d0240500c
Imported from libpng-1.4.0beta56.tar
v1.4.0beta56
2009-04-25 07:44:20 -05:00
Glenn Randers-Pehrson
977c6bd44c
Imported from libpng-1.2.36beta05.tar
v1.2.36beta05
2009-04-24 15:09:41 -05:00
Glenn Randers-Pehrson
89ad3aa168
Suppress "shadowed declaration" warnings about "gamma" in pngset.c
...
The variable "gamma" is also defined in math.h on some platforms.
2009-04-20 13:23:24 -05:00
Glenn Randers-Pehrson
55b921dab2
Suppress "shadowed declaration" warnings in pngtest.c
...
Changed some local variable names such as "buffer" to "buff".
2009-04-20 13:12:07 -05:00
Glenn Randers-Pehrson
92d0fe938f
Add PNG_SKIP_SETJMP_CHECK macro
2009-04-20 13:07:01 -05:00
Glenn Randers-Pehrson
d07e9b03c4
Bump versioning to 1.2.36beta05
2009-04-20 13:02:18 -05:00
Glenn Randers-Pehrson
4db4affbaf
Change two remaining "gamma" to "png_gamma" (Brandon Casey)
2009-04-20 11:49:24 -05:00