mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
0debb1e9fc
Original commit message from CVS: * ext\jpeg\smokecodec.c: use of GST_DEBUG instead of DEBUG(a...) for WIN32 * ext\speex\gstspeexenc.c: (gst_speexenc_set_header_on_caps): move first instruction after all variables declarations * gst\alpha\gstalpha.c: * gst\effectv\gstshagadelic.c: * gst\smpte\paint.c: * gst\videofilter\gstvideobalance.c: define M_PI if it's not defined (it's not defined on WIN32) * gst\cutter\gstcutter.c: (gst_cutter_chain): * gst\id3demux\id3v2frames.c: (parse_relative_volume_adjustment_two): * gst\level\gstlevel.c: (gst_level_set_property), (gst_level_transform_ip): * gst\matroska\matroska-demux.c: (gst_matroska_demux_parse_info), (gst_matroska_demux_video_caps): * gst\matroska\matroska-mux.c: (gst_matroska_mux_start), (gst_matroska_mux_finish): * gst\wavparse\gstwavparse.c: (gst_wavparse_stream_data): use gst_guint64_to_gdouble for conversions * gst\goom\filters.c: (setPixelRGB_): fix a debug which was using undefined variable * gst\level\gstlevel.c: (gst_level_set_caps), (gst_level_transform_ip): * gst\matroska\ebml-read.c: (gst_ebml_read_sint): replace LL suffix with L suffix (LL isn't supported by MSVC6.0) * win32/vs6: add vs6 projects files for most of plugins-good |
||
---|---|---|
.. | ||
gstjpeg.c | ||
gstjpegdec.c | ||
gstjpegdec.h | ||
gstjpegenc.c | ||
gstjpegenc.h | ||
gstsmokedec.c | ||
gstsmokedec.h | ||
gstsmokeenc.c | ||
gstsmokeenc.h | ||
Makefile.am | ||
README | ||
smokecodec.c | ||
smokecodec.h | ||
smokeformat.h |
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