gstreamer/ext/jpeg
Tim-Philipp Müller d39143f4bb ext/jpeg/gstjpegdec.c: Fix decoding of pictures with certain uneven or unaligned widths where jpeglib needs more hori...
Original commit message from CVS:
* ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_decode_indirect),
(gst_jpeg_dec_decode_direct), (gst_jpeg_dec_chain):
Fix decoding of pictures with certain uneven or unaligned
widths where jpeglib needs more horizontal padding than our
I420 buffers provide, resulting in blocky artifacts at the
left side of the picture (#164176).
Also make use of our shiny new GST_ROUND_N() macros.
2005-08-12 19:33:31 +00:00
..
gstjpeg.c Port jpegdec to 0.9; handles 'progressive loading' now, ie. input does no longer need to be one single buffer. 2005-08-08 12:13:08 +00:00
gstjpegdec.c ext/jpeg/gstjpegdec.c: Fix decoding of pictures with certain uneven or unaligned widths where jpeglib needs more hori... 2005-08-12 19:33:31 +00:00
gstjpegdec.h ext/jpeg/gstjpegdec.*: Fix crashes/invalid memory access for pictures that have a height that is not a multiple of 16... 2005-08-11 15:02:37 +00:00
gstjpegenc.c ext/gdk_pixbuf/pixbufscale.c: Don't leak caps string (fixes #168134) 2005-02-22 12:04:16 +00:00
gstjpegenc.h *.h: Revert indenting 2004-03-15 16:32:54 +00:00
gstsmokedec.c ext/jpeg/: Updated smoke, new bitstream, allows embedding in ogg. 2004-10-04 16:53:48 +00:00
gstsmokedec.h ext/jpeg/: Updated smoke, new bitstream, allows embedding in ogg. 2004-10-04 16:53:48 +00:00
gstsmokeenc.c ext/: Fix mimetype on smoke encoder. 2004-10-18 14:02:51 +00:00
gstsmokeenc.h ext/jpeg/: Updated smoke, new bitstream, allows embedding in ogg. 2004-10-04 16:53:48 +00:00
Makefile.am ext/jpeg/Makefile.am: Fix compile. 2005-08-08 14:51:35 +00:00
README ext/jpeg/: Added a new simple jpeg based codec 2004-06-08 11:47:35 +00:00
smokecodec.c ext/jpeg/: Updated smoke, new bitstream, allows embedding in ogg. 2004-10-04 16:53:48 +00:00
smokecodec.h ext/jpeg/: Updated smoke, new bitstream, allows embedding in ogg. 2004-10-04 16:53:48 +00:00
smokeformat.h ext/jpeg/: Updated smoke, new bitstream, allows embedding in ogg. 2004-10-04 16:53:48 +00:00

The Smoke Codec
---------------

This is a very simple compression algorithm I was toying with when doing a
Java based player. Decoding a JPEG in Java has acceptable speed so this codec
tries to exploit that feature. The algorithm first compares the last and the 
new image and finds all 16x16 blocks that have a squared difference bigger than
a configurable threshold. Then all these blocks are compressed into an NxM JPEG.
The quality of the JPEG is inversely proportional to the number of blocks, this
way, the picture quality degrades with heavy motion scenes but the bitrate stays
more or less constant.
Decoding decompresses the JPEG and then updates the old picture with the new
blocks.


TODO:
----
- make format extensible
- motion vectors
- do some real bitrate control