Jump to content

Libjpeg-turbo: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
No edit summary
Line 1: Line 1:
[[image:ljtlogo.gif]]
[[image:ljtlogo.gif|right]]
 
==Description==
==Description==
libjpeg-turbo is a JPEG image codec that uses SIMD instructions (MMX, SSE2, NEON, AltiVec) to accelerate baseline JPEG compression and decompression on x86, x86-64, ARM, and PowerPC systems. On such systems, libjpeg-turbo is generally 2-6x as fast as libjpeg, all else being equal. On other types of systems, libjpeg-turbo can still outperform libjpeg by a significant amount, by virtue of its highly-optimized Huffman coding routines. In many cases, the performance of libjpeg-turbo rivals that of proprietary high-speed JPEG codecs.
libjpeg-turbo is a JPEG image codec that uses SIMD instructions (MMX, SSE2, NEON, AltiVec) to accelerate baseline JPEG compression and decompression on x86, x86-64, ARM, and PowerPC systems. On such systems, libjpeg-turbo is generally 2-6x as fast as libjpeg, all else being equal. On other types of systems, libjpeg-turbo can still outperform libjpeg by a significant amount, by virtue of its highly-optimized Huffman coding routines. In many cases, the performance of libjpeg-turbo rivals that of proprietary high-speed JPEG codecs.
==Download==
* [http://hobbes.nmsu.edu/h-search.php?key=libjpeg-turbo- libjpeg-turbo-1.4.2]


==API Documentation==
==API Documentation==
Line 22: Line 18:
==Links==
==Links==
* [http://libjpeg-turbo.virtualgl.org/ Official Project Website]
* [http://libjpeg-turbo.virtualgl.org/ Official Project Website]
* Download: [http://hobbes.nmsu.edu/h-search.php?key=libjpeg-turbo- libjpeg-turbo-1.4.2] for OS/2


[[Category:Tools]]
[[Category:C Libraries]]
[[Category:The OS/2 API Project]]

Revision as of 00:18, 6 October 2016

Description

libjpeg-turbo is a JPEG image codec that uses SIMD instructions (MMX, SSE2, NEON, AltiVec) to accelerate baseline JPEG compression and decompression on x86, x86-64, ARM, and PowerPC systems. On such systems, libjpeg-turbo is generally 2-6x as fast as libjpeg, all else being equal. On other types of systems, libjpeg-turbo can still outperform libjpeg by a significant amount, by virtue of its highly-optimized Huffman coding routines. In many cases, the performance of libjpeg-turbo rivals that of proprietary high-speed JPEG codecs.

API Documentation

License

libjpeg-turbo is covered by three compatible BSD-style open source licenses:

  • The IJG (Independent JPEG Group) License, which is listed in README
  • The Modified (3-clause) BSD License, which is listed in turbojpeg.c
  • The zlib License, which is listed in simd/jsimdext.inc

Author

  • Port: Gianfilippo Cimmino

Links