Is there any free or commercal jpeg decode which is really fast [closed]

别来无恙 提交于 2019-12-04 09:09:05

The fastest way is not to decode it at all. Usually you can use a low-res preview first; that requires only the low frequencies. For a 546 x 289 pixel preview, you in fact only need the (0,0) (DC) component.

There's the Intel Performance Primitives which contains JPEG coding/decoding implementations

Also see http://sourceforge.net/projects/libjpeg-turbo/ for a drop-in replacement of libjpeg that uses SIMD instructions for a significant performance boost.

I use libjpeg from ijg. It's documented how to modify for your purposes, like coding/decoding in memory.

I think DirectX and libSDL can decode jpegs - although libSDL might use libjpeg for decoding.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!