I am trying to decompress the following lossless JPEG bitstream (ITU 81):
It seems to have been generated by:
$ strings -n 20 intel_ipp_lossless.jpg
4Intel(R) IPP JPEG encoder [5.3.497] - Aug 12 2008
Which is compatible with:
IPP JPEG supportsfollowing compression modes defined by JPEG ISO/IEC 10918:
- Baseline, 8-bits, DCT based process, huffman entropy coding
- Extended baseline, 8- and 12-bits, DCT based process, huffman entropy coding
- Lossless, 1..16 bits, prediction based, huffman entropy coding
But I am having a hard time understanding how to use IPP:
- https://software.seek.intel.com/performance-libraries
- -> Intel® Integrated Performance Primitives
When I look at the examples I cannot find anything related to JPEG decompression anymore.
Where/How can I use IPP JPEG decoder ?
Update: Seems like intel ipp forum is not very active anymore.