gstreamer/ext/jpeg
Andy Wingo 7fbfd29bbe Update for alloc_buffer changes.
Original commit message from CVS:
2005-12-05  Andy Wingo  <wingo@pobox.com>

* ext/dv/gstdvdec.c: (gst_dvdec_chain):
* ext/flac/gstflacdec.c: (gst_flacdec_write):
* ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
* ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
* ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
* ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
* ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
* ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
* ext/speex/gstspeexdec.c: (speex_dec_chain):
* ext/speex/gstspeexenc.c: (gst_speexenc_chain):
* gst/auparse/gstauparse.c: (gst_auparse_chain):
* gst/flx/gstflxdec.c: (gst_flxdec_chain):
* gst/goom/gstgoom.c: (gst_goom_chain):
* gst/matroska/matroska-demux.c:
(gst_matroska_demux_push_vorbis_codec_priv_data),
(gst_matroska_demux_add_wvpk_header):
* gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
* gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
* gst/videomixer/videomixer.c: (gst_videomixer_collected):
* gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
alloc_buffer changes.
2005-12-05 13:03:00 +00:00
..
gstjpeg.c rework configure.ac; make asterisk rtp stuff compile on mingw 2005-11-14 02:13:35 +00:00
gstjpegdec.c Update for alloc_buffer changes. 2005-12-05 13:03:00 +00:00
gstjpegdec.h ext/jpeg/: JPEG fractiony goodness. 2005-11-22 23:58:14 +00:00
gstjpegenc.c Update for alloc_buffer changes. 2005-12-05 13:03:00 +00:00
gstjpegenc.h ext/jpeg/: JPEG fractiony goodness. 2005-11-22 23:58:14 +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/jpeg/: JPEG fractiony goodness. 2005-11-22 23:58:14 +00:00
gstsmokeenc.h ext/jpeg/: JPEG fractiony goodness. 2005-11-22 23:58:14 +00:00
Makefile.am fix build and use of GST_LIBS 2005-09-23 04:23:00 +00:00
README ext/jpeg/: Added a new simple jpeg based codec 2004-06-08 11:47:35 +00:00
smokecodec.c fix compiler warnings 2005-09-09 16:11: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