gstreamer/ext/jpeg
Matthieu Crapet ba86a1d99c jpegenc: add snapshot property
Like pngenc, automatically send an EOS message.

Example of bin:
appsrc ! jpegenc snapshot=true ! filesink location=out.jpg

This is especially useful for limited/slow hardware.

Otherwise calling gst_video_convert_sample() is a better option
(internally uses videoconvert and videoscale).

https://bugzilla.gnome.org/show_bug.cgi?id=755453
2018-01-31 17:51:16 +00:00
..
gstjpeg.c
gstjpeg.h
gstjpegdec.c jpeg: Fixup frames without an EOI marker 2017-12-27 19:39:39 +01:00
gstjpegdec.h
gstjpegenc.c jpegenc: add snapshot property 2018-01-31 17:51:16 +00:00
gstjpegenc.h jpegenc: add snapshot property 2018-01-31 17:51:16 +00:00
gstsmokedec.c
gstsmokedec.h
gstsmokeenc.c
gstsmokeenc.h
Makefile.am Remove plugin specific static build option 2017-05-16 14:41:19 -04:00
meson.build
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