summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [libpng16] Imported from libpng-1.6.16.tarv1.6.16libpng-1.6.16-signedGlenn Randers-Pehrson2014-12-2135-92/+81
|
* [libpng16] Imported from libpng-1.6.16rc03.tarv1.6.16rc03Glenn Randers-Pehrson2014-12-2122-44/+44
|
* [libpng16] Fixed an overflow in png_combine_row with very wide interlacedJohn Bowler2014-12-213-11/+17
| | | | images.
* [libpng16] Imported from libpng-1.6.16rc02.tarv1.6.16rc02Glenn Randers-Pehrson2014-12-2125-57/+62
|
* [libpng16] Imported from libpng-1.6.16rc01.tarv1.6.16rc01Glenn Randers-Pehrson2014-12-2125-56/+100
|
* [libpng16] Imported from libpng-1.6.16beta03.tarv1.6.16beta03Glenn Randers-Pehrson2014-12-2018-61/+55
|
* [libpng16] Quiet a "comparison always true" warning in pngstest.c (John Bowler).John Bowler2014-12-163-17/+30
|
* [libpng16] Bump version to 1.6.16beta03Glenn Randers-Pehrson2014-12-1429-60/+64
|
* [libpng16] Imported from libpng-1.6.16beta02.tarv1.6.16beta02Glenn Randers-Pehrson2014-12-142-4/+4
|
* [libpng16] Revised handling of scripts/*.dfn; renamed them to scripts/*.cJohn Bowler2014-12-1423-64/+67
|
* [libpng16] Bump version to 1.6.16beta02Glenn Randers-Pehrson2014-12-1424-54/+58
|
* [libpng16] Imported from libpng-1.6.16beta01.tarv1.6.16beta01Glenn Randers-Pehrson2014-12-1415-31/+31
|
* [libpng16] Revised Makefile.am and scripts/symbols.dfn to work with MinGW/MSYSBob Friesenhahn2014-12-144-8/+12
|
* [libpng16] Update arm/*.c to libpng coding style.Glenn Randers-Pehrson2014-11-292-5/+7
|
* [libpng16] Added ".align 2" to arm/filter_neon.S to support old GAS assemblersGlenn Randers-Pehrson2014-11-295-14/+23
| | | | that don't do alignment correctly.
* [libpng16] Bump version to 1.6.16beta01Glenn Randers-Pehrson2014-11-2129-104/+81
|
* [libpng16] Imported from libpng-1.6.15.tarv1.6.15libpng-1.6.15-signedGlenn Randers-Pehrson2014-11-2041-113/+86
|
* [libpng16] Imported from libpng-1.6.15rc03.tarv1.6.15rc03Glenn Randers-Pehrson2014-11-1623-54/+54
|
* [libpng16] Added "-D_CRT_SECURE_NO_WARNINGS" to CFLAGS inCosmin Truta2014-11-164-13/+20
| | | | | scripts/makefile.vcwin32. Removed the obsolete $ARCH variable from scripts/makefile.darwin.
* [libpng16] Fix typos in ANNOUNCE and CHANGESGlenn Randers-Pehrson2014-11-142-4/+4
|
* [libpng16] Imported from libpng-1.6.15rc02.tarv1.6.15rc02Glenn Randers-Pehrson2014-11-1425-58/+58
|
* [libpng16] The macros passed in the command line to Borland make were ignored ifCosmin Truta2014-11-145-8/+26
| | | | | | similarly-named macros were already defined in makefiles. This behavior is different from POSIX make and other make programs. Surround the macro definitions with ifndef guards (Cosmin).
* [libpng16] Imported from libpng-1.6.15rc01.tarv1.6.15rc01Glenn Randers-Pehrson2014-11-1326-65/+74
|
* [libpng16] Imported from libpng-1.6.15beta08.tarv1.6.15beta08Glenn Randers-Pehrson2014-11-0816-31/+33
|
* [libpng16] More "#endif" housecleaning, in *.hGlenn Randers-Pehrson2014-11-077-30/+32
|
* [libpng16] Bump version to 1.6.15beta08Glenn Randers-Pehrson2014-11-0724-54/+58
|
* [libpng16] Imported from libpng-1.6.15beta07.tarv1.6.15beta07Glenn Randers-Pehrson2014-11-0712-25/+25
|
* [libpng16] Fix typo in example.cGlenn Randers-Pehrson2014-11-061-1/+1
|
* [libpng16] Changed "#endif /* PNG_FEATURE_SUPPORTED */" to "#endif /* ↵Glenn Randers-Pehrson2014-11-0617-145/+144
| | | | FEATURE */"
* [libpng16] Removed #ifdef PNG_16BIT_SUPPORTED/#endif around png_product2(); ↵Glenn Randers-Pehrson2014-11-065-8/+20
| | | | | | | | it is needed by png_reciprocal2(). Added #ifdef PNG_16BIT_SUPPORTED/#endif around png_log16bit() and png_do_swap().
* [libpng16] Bump version to 1.6.15beta07v1.6.15beta06Glenn Randers-Pehrson2014-11-0624-58/+62
|
* [libpng16] Reverted use png_get_libpng_ver(NULL) instead of ↵Glenn Randers-Pehrson2014-11-0614-28/+34
| | | | | | | PNG_LIBPNG_VER_STRING in the manual, example.c, pngtest.c, and applications in the contrib directory. It was incorrect advice.
* [libpng16] Bump version to 1.6.15beta06Glenn Randers-Pehrson2014-11-0525-62/+66
|
* [libpng16] Imported from libpng-1.6.15beta05.tarv1.6.15beta05Glenn Randers-Pehrson2014-11-0510-15/+15
|
* [libpng16] Fixed array size calculations to avoid warnings. At various pointsJohn Bowler2014-11-055-5/+35
| | | | | | | | | | in the code the number of elements in an array is calculated using sizeof. This generates a compile time constant of type (size_t) which is then typically assigned to an (unsigned int) or (int). Some versions of GCC on 64-bit systems warn about the apparent narrowing, even though the same compiler does apparently generate the correct, in-range, numeric constant. This adds appropriate, safe, casts to make the warnings go away.
* [libpng16] Free all allocated memory in pngimage. The file buffer cache was leftJohn Bowler2014-11-052-2/+39
| | | | | allocated at the end of the program, harmless but it causes memory leak reports from clang.
* [libpng16] Fixed GCC unsigned int->float warnings. Various versions of GCCJohn Bowler2014-11-052-3/+46
| | | | | | seem to generate warnings when an unsigned value is implicitly converted to double. This is probably a GCC bug but this change avoids the issue by explicitly converting to (int) where safe.
* [libpng16] use PNG_LIBPNG_VER_STRING[i] in png_user_version_check()Glenn Randers-Pehrson2014-11-051-15/+16
|
* [libpng16] Simplified and future-proofed png_user_version_check().Glenn Randers-Pehrson2014-11-053-13/+11
|
* [libpng16] Avoid out-of-bounds memory access in png_user_version_check().Glenn Randers-Pehrson2014-11-053-4/+7
|
* [libpng16] Use png_get_libpng_ver(NULL), not PNG_LIBPNG_VER_STRINGGlenn Randers-Pehrson2014-11-0421-50/+56
|
* [libpng16] Bump version to 1.6.15beta05Glenn Randers-Pehrson2014-11-0424-54/+58
|
* [libpng16] Imported from libpng-1.6.15beta04.tarv1.6.15beta04Glenn Randers-Pehrson2014-11-0413-27/+27
|
* [libpng16] Removed new PNG_USE_ARM_NEON configuration flag and made a one-lineJohn Bowler2014-11-034-11/+11
| | | | revision to configure.ac to support ARM on aarch64 instead (John Bowler).
* [libpng16] Bump version to 1.6.15beta04Glenn Randers-Pehrson2014-11-0325-55/+59
|
* [libpng16] Imported from libpng-1.6.15beta03.tarv1.6.15beta03Glenn Randers-Pehrson2014-11-0314-28/+28
|
* [libpng16] Added PNG_USE_ARM_NEON configuration flag (Marcin Juszkiewicz).Glenn Randers-Pehrson2014-11-034-5/+11
|
* [libpng16] Bump version to 1.6.15beta03Glenn Randers-Pehrson2014-11-0124-54/+58
|
* [libpng16] Imported from libpng-1.6.15beta02.tarv1.6.15beta02Glenn Randers-Pehrson2014-11-0112-25/+25
|
* [libpng16] More cosmetic changesGlenn Randers-Pehrson2014-11-018-32/+37
|