1. 81a50f7 Grammar police by DRC · 13 years ago
  2. 2c62da3 Subtle point, but TurboJPEG is the API and TurboJPEG/OSS is the library implementing that API. by DRC · 13 years ago
  3. efe28ce Compiler warnings by DRC · 13 years ago
  4. b76c840 Add program that demonstrates how to check for the existence of the colorspace extensions by DRC · 13 years ago
  5. 67ce3b2 Added new alpha channel colorspace constants/pixel formats, so applications can specify that they need the unused byte in a 4-component RGB output buffer set to 0xFF when decompressing. by DRC · 13 years ago
  6. ab64b62 Add LIBJPEG_TURBO_VERSION macro for checking the libjpeg-turbo version at compile time by DRC · 13 years ago
  7. 80803ae "which"="that" by DRC · 13 years ago
  8. ebfe9e4 Fixed non-fatal out-of-bounds read in SSE2 SIMD code reported by valgrind when decompressing a JPEG image to a bitmap buffer whose size was not a multiple of 16 bytes. by DRC · 13 years ago
  9. c412184 Fixed non-fatal out-of-bounds read in SSE2 SIMD code reported by valgrind when decompressing a JPEG image to a bitmap buffer whose size was not a multiple of 16 bytes. by DRC · 13 years ago
  10. 795e6ad Fixed non-fatal out-of-bounds read in SSE2 SIMD code reported by valgrind when decompressing a JPEG image to a bitmap buffer whose size was not a multiple of 16 bytes. by DRC · 13 years ago
  11. 105f9a9 Expose NASM variable in ccmake by DRC · 13 years ago
  12. 0f905d3 Expose NASM variable in ccmake by DRC · 13 years ago
  13. 1ca924a NASM automatically adds the current directory to the include path, but YASM doesn't, so we need to explicitly add it. by DRC · 13 years ago
  14. b56ae3d 1.2.0 by DRC · 13 years ago
  15. 77fee43 by DRC · 13 years ago
  16. 7bc3fb5 by DRC · 13 years ago
  17. 7080ea3 by DRC · 13 years ago
  18. 3c21b08 by DRC · 13 years ago
  19. a006fba Fix 'make dist' by DRC · 13 years ago
  20. 89c59dd iOS doesn't allow dynamic linking against non-system libs by DRC · 13 years ago
  21. 94755ce ARM + iOS instructions by DRC · 13 years ago
  22. 8e11a05 Make sure we don't call jpeg_destroy_[de]compress() on an uninitialized struct, as bad mojo can ensue. by DRC · 13 years ago
  23. 20c7dbc Fix compiler warning by DRC · 13 years ago
  24. 06420c4 Oops. Don't try to use custom filter at the C level unless it is defined at the Java level. by DRC · 13 years ago
  25. f69dc28 Wordsmithing by DRC · 13 years ago
  26. 4ad6003 Always link tjbench against jpeg-static instead of the JPEG DLL, since we are only using libjpeg for bitmap I/O by DRC · 13 years ago
  27. 6b968b2 Add TJCustomFilter to Windows build by DRC · 13 years ago
  28. 870fd8f Add a couple of missing pages by DRC · 13 years ago
  29. f546711 Implement custom filter callback in Java by DRC · 13 years ago
  30. 835b76f Fix 'make docs' with out-of-tree builds by DRC · 13 years ago
  31. c6fa5ba Fix 'make headers' with out-of-tree builds by DRC · 13 years ago
  32. 57a3736 by DRC · 13 years ago
  33. 7bf04d3 Implement a custom DCT filter callback for lossless transforms by DRC · 13 years ago
  34. 9a4570a Eliminate "main is usually a function" warnings by DRC · 13 years ago
  35. 7ed7b57 Eliminate "main is usually a function" warnings by DRC · 12 years ago
  36. 2d48165 Merge spacing changes from VirtualGL by DRC · 13 years ago
  37. 307156d Merge wordsmithing/grammar fixes from trunk by DRC · 13 years ago
  38. 3fbf08b Fill unused byte with 0xFF on Windows as well by DRC · 13 years ago
  39. d89e01f Use 8-bit write to avoid potential pointer aliasing issues (also, at least on x86, it's faster than the previous approach.) by DRC · 13 years ago
  40. c08e8c1 When decompressing to a 4-byte RGB buffer, set the unused byte to 0xFF so it can be interpreted as an opaque alpha channel. by DRC · 13 years ago
  41. b4570bb Improve performance of non-SIMD color conversion routines and use global constants to define colorspace extension parameters by DRC · 13 years ago
  42. f12bb30 Fix compile error when JCS_EXTENSIONS!=1 by DRC · 13 years ago
  43. 22bfd9c Use descriptions from libjpeg v8 by DRC · 13 years ago
  44. 36edad7 Back out CMYK-to-RGB conversions. There is really no way to properly do CMYK-to-RGB conversion without color management, which is out of scope for libjpeg-turbo. Applications wishing to do a trivial conversion, such as was implemented in these routines, can simply request CMYK output and do the trivial conversion themselves (or, even better, use an OSS color management library.) We should not encourage the use of in-library CMYK-to-RGB conversion as a substitute for color management. by DRC · 13 years ago
  45. b071f01 Update Nokia contact info by DRC · 13 years ago
  46. ad6955d Improve performance of IFAST iDCT by changing the order of transpose and descale steps by DRC · 13 years ago
  47. 5129e39 Make ARM ISLOW iDCT faster on typical cases, and eliminate the possibility of 16-bit overflows when handling arbitrary coefficients. by DRC · 13 years ago
  48. 98a44fe Improve the performance of YCbCr to RGB conversion on ARM by DRC · 13 years ago
  49. ce4e3e8 NEON-accelerated slow integer inverse DCT by DRC · 13 years ago
  50. 82bd521 NEON-accelerated quantization by DRC · 13 years ago
  51. e5c6eb5 by DRC · 13 years ago
  52. a2fdd0c Use integer arithmetic for CMYK-to-RGB conversions by DRC · 13 years ago
  53. 4b024a6 Improve performance of ARM NEON IFAST iDCT by DRC · 13 years ago
  54. 0dc7c82 Oops by DRC · 13 years ago
  55. 3d0fe94 Add Nokia copyright (for ARM NEON code) by DRC · 13 years ago
  56. 8a36717 by DRC · 13 years ago
  57. 7a9376c ARM NEON-accelerated RGB-to-YCbCr conversion by DRC · 13 years ago
  58. 2a47df6 Oops by DRC · 13 years ago
  59. 51cf51a CMYK/YCCK support by DRC · 13 years ago
  60. 0f65030 Support for accelerated forward DCT using ARM NEON instructions by DRC · 13 years ago
  61. b740054 Support for accelerated forward DCT using ARM NEON instructions by DRC · 13 years ago
  62. 9c4590e by DRC · 13 years ago
  63. a9b35c9 Don't include JAR file in 32-bit compatibility package by DRC · 13 years ago
  64. 1208d50 Trying to out-clever ourselves by having autotools generate the deb-control file broke the 32-bit supplementary DEB, so revert to the method we used in LJT 1.0 to generate this file. by DRC · 13 years ago
  65. 68a086a Trying to out-clever ourselves by having autotools generate the deb-control file broke the 32-bit supplementary DEB, so revert to the method we used in LJT 1.0 to generate this file. by DRC · 13 years ago
  66. 2091870 Oops. Apparently forgot to change the description when borrowing this from VirtualGL by DRC · 13 years ago
  67. e835ee3 Windows doesn't have random() by DRC · 13 years ago
  68. dc2697d Windows doesn't have random() by DRC · 13 years ago
  69. 868ca2b Use random noise to ensure that the JPEG image generated in the buffer size test exceeds the size of the uncompressed source image. by DRC · 13 years ago
  70. 724c56b Use random noise to ensure that the JPEG image generated in the buffer size test exceeds the size of the uncompressed source image. by DRC · 13 years ago
  71. 9b49f0e Re-work TJBUFSIZE() to take into account the level of chrominance subsampling by DRC · 13 years ago
  72. fa9ff8e Restore compatibility with the jpeg-6b error enum, even if arithmetic coding is enabled. by DRC · 13 years ago
  73. bd1ef43 Restore compatibility with the jpeg-6b error enum, even if arithmetic coding is enabled. by DRC · 13 years ago
  74. ffdb8f2 Prevent jmorecfg.h from re-defining INT32 and INT16 if those types have already been defined by the Windows system headers. by DRC · 13 years ago
  75. b7120ca Prevent jmorecfg.h from re-defining INT32 and INT16 if those types have already been defined by the Windows system headers. by DRC · 13 years ago
  76. eed0861 Prevent jmorecfg.h from re-defining INT32 and INT16 if those types have already been defined by the Windows system headers. by DRC · 13 years ago
  77. 8c60d22 NEON-optimized 2x2 and 4x4 scaled iDCTs by DRC · 13 years ago
  78. c52c556 by DRC · 13 years ago
  79. e54b755 iOS ARM support by DRC · 13 years ago
  80. 4346f91 iOS ARM support by DRC · 13 years ago
  81. cf137ac 1.1.2 by DRC · 13 years ago
  82. b8c6ee3 Fix a minor ABI incompatibility caused by the introduction of new error constants into the enum in jerror.h. by DRC · 13 years ago
  83. 0571e17 Fix a minor ABI incompatibility caused by the introduction of new error constants into the enum in jerror.h. by DRC · 13 years ago
  84. 215aa8b Re-factor checkBufYUV() function to more closely resemble re-factored checkBuf() function by DRC · 13 years ago
  85. ac906c5 Change the name of the pre-computed bits table to match its actual function by DRC · 13 years ago
  86. 418dbdf turbojpegl.c=turbojpeg.c by DRC · 13 years ago
  87. bd86b76 by DRC · 13 years ago
  88. 7e3fd2f jpegtran on Windows needs the same fix as cjpeg and djpeg to eliminate errors when I/O redirection is used. by DRC · 13 years ago
  89. e9f9ec4 jpegtran on Windows needs the same fix as cjpeg and djpeg to eliminate errors when I/O redirection is used. by DRC · 13 years ago
  90. 4db92ad Need to set TJFLAG_NOREALLOC for tjTransform() by DRC · 13 years ago
  91. 94f0e03 Oops. Add the already-advertised -bmp option by DRC · 13 years ago
  92. 296c71b MinGW seems to barf unless jinclude.h is included before jpeglib.h by DRC · 13 years ago
  93. 312cd79 "jpegut"="tjunittest" & "jpgtest"="tjbench" by DRC · 13 years ago
  94. b8b359a "jpegut"="tjunittest" & "jpgtest"="tjbench" by DRC · 13 years ago
  95. 3185cb9 "jpegut"="tjunittest" & "jpgtest"="tjbench" by DRC · 13 years ago
  96. 7f73d9b Fix OS X uninstaller by DRC · 13 years ago
  97. 565a5bd Add dynamic allocation test; Fix compression ratio output in quiet mode; Fix memory leak by DRC · 13 years ago
  98. 9a746ad Remove wxWindows license files from packages by DRC · 13 years ago
  99. 44eb47e Fix 'make dist' by DRC · 13 years ago
  100. 9f5320f Fix 'make dist' by DRC · 13 years ago