Is there a faster lossy compression than JPEG?

Richard Knop picture Richard Knop · Dec 29, 2010 · Viewed 7.8k times · Source

Is there a compression algorithm that is faster than JPEG yet well supported? I know about jpeg2000 but from what I've heard it's not really that much faster.

Edit: for compressing.

Edit2: It should run on Linux 32 bit and ideally it should be in C or C++.

Answer

R.. GitHub STOP HELPING ICE picture R.. GitHub STOP HELPING ICE · Dec 29, 2010

Jpeg encoding and decoding should be extremely fast. You'll have a hard time finding a faster algorithm. If it's slow, your problem is probably not the format but a bad implementation of the encoder. Try the encoder from libavcodec in the ffmpeg project.