gstreamer/gst/videomixer
Tim-Philipp Müller 7a76595b22 videomixer: link to libm for maths stuff
Fixes undefined references to rint and pow on ubuntu
build bot.
2013-09-17 22:02:04 +01:00
..
blend.c videomixer: Bundle private copies of videoconvert code 2013-09-10 10:36:30 +02:00
blend.h Fix FSF address 2012-11-04 00:07:18 +00:00
gstcms.c videomixer: Bundle private copies of videoconvert code 2013-09-10 10:36:30 +02:00
gstcms.h videomixer: Bundle private copies of videoconvert code 2013-09-10 10:36:30 +02:00
Makefile.am videomixer: link to libm for maths stuff 2013-09-17 22:02:04 +01:00
README A plugin to add an alpha channel to I420 video. Can optionally do chroma keying. 2004-05-28 18:01:34 +00:00
videoconvert.c videomixer: Bundle private copies of videoconvert code 2013-09-10 10:36:30 +02:00
videoconvert.h videomixer: Bundle private copies of videoconvert code 2013-09-10 10:36:30 +02:00
videomixer.vcproj more working plugins 2004-07-27 21:41:30 +00:00
videomixer2.c videomixer: Do not check if caps are empty when they are NULL 2013-09-11 14:33:31 -03:00
videomixer2.h videomixer: Do not send flush_stop ourself after a flush_start 2013-08-17 11:40:27 +02:00
videomixer2pad.h videomixer: Add colorspace conversion 2013-09-10 10:37:23 +02:00
videomixerorc-dist.c videomixer: Update orc generated files 2013-09-16 11:03:06 +02:00
videomixerorc-dist.h videomixer: Update orc generated files 2013-09-16 11:03:06 +02:00
videomixerorc.orc videomixer: Bundle private copies of videoconvert code 2013-09-10 10:36:30 +02:00

Video Mixer
-----------

A generice video mixer, it blends the ayuv buffers from all pads onto 
a new buffer. The new buffer has by default a checkerboard pattern but
its color can be changed with a property.
The mixer can mix streams with different framerates and video sizes. It
uses the duration value of the buffer to schedule the rendering of the
buffers. For streams with a different resoltion than the final output
resolution one can specify the position of the top left corner where this
image should be placed with the pad properties xpos and ypos.
The overall alpha value of a stream can also be specified with a pad
property.
By default, the streams are blended in the order that the pads were 
requested from the element. This can be overridden by changing the 
zorder pad property of the stream, a stream with lower zorder gets
drawn first.


TODO
----

- really implement zorder
- take I420 yuv as well
- output AYUV if possible.
- implement different blend modes, some code is already done
- use filter caps on srcpad to decide on the final output size