1. 16 9月, 2015 1 次提交
    • J
      [libpng16] tests backported from libpng 1.7 · c3e7e7d7
      John Bowler 提交于
      This updates libpng16 with all the test changes from libpng17,
      including changes to pngvalid.c to ensure that the original,
      distributed, version of contrib/visupng/cexcept.h can be used.
      
      pngvalid contains the correction to the use of SAVE/STORE_
      UNKNOWN_CHUNKS; a bug revealed by changes in libpng 1.7.  More
      tests contain the --strict option to detect warnings and the
      pngvalid-standard test has been corrected so that it does not
      turn on progresive-read (there is a separate test which does
      that.)
      
      Some signed/unsigned fixes have been made.
      Signed-off-by: NJohn Bowler <jbowler@acm.org>
      c3e7e7d7
  2. 20 8月, 2015 1 次提交
  3. 14 8月, 2015 1 次提交
  4. 23 7月, 2015 1 次提交
  5. 04 6月, 2015 2 次提交
  6. 31 3月, 2015 1 次提交
  7. 26 3月, 2015 2 次提交
  8. 01 1月, 2015 1 次提交
  9. 30 12月, 2014 1 次提交
  10. 28 12月, 2014 1 次提交
  11. 06 11月, 2014 2 次提交
  12. 05 11月, 2014 1 次提交
  13. 23 10月, 2014 1 次提交
  14. 27 9月, 2014 1 次提交
  15. 19 9月, 2014 2 次提交
  16. 18 9月, 2014 1 次提交
  17. 26 3月, 2014 1 次提交
  18. 18 3月, 2014 2 次提交
  19. 07 3月, 2014 1 次提交
  20. 17 2月, 2014 1 次提交
  21. 10 2月, 2014 1 次提交
  22. 07 2月, 2014 1 次提交
  23. 06 2月, 2014 2 次提交
  24. 01 1月, 2014 1 次提交
  25. 30 12月, 2013 2 次提交
  26. 27 12月, 2013 2 次提交
  27. 19 12月, 2013 1 次提交
  28. 23 11月, 2013 3 次提交
  29. 17 10月, 2013 1 次提交
  30. 01 10月, 2013 1 次提交
    • J
      [libpng16] Avoid up-cast warnings in pngvalid.c. On ARM the alignment · 8f381901
      John Bowler 提交于
      requirements of png_modifier are greater than that of png_store and as a
      consequence compilation of pngvalid.c results in a warning about increased
      alignment requirements because of the bare cast to (png_modifier*). The code
      is safe, because the pointer is known to point to a stack allocated
      png_modifier, but this change avoids the warning.
      
        Fixed default behavior of ARM_NEON_API. If the ARM NEON API option was
          compiled without the CHECK option it defaulted to on, not off.
      
        Check user callback behavior in pngunknown.c. Previous versions compiled
          if SAVE_UNKNOWN was not available but did nothing since the callback
          was never implemented.
      
        Merged pngunknown.c with 1.7 version and back ported 1.7 improvements/fixes
      8f381901