gstreamer/gst/videomixer
2010-10-15 14:02:57 -07:00
..
blend.c videomixer: orc_init() doesn't need to be called 2010-09-05 18:45:21 -07:00
blend.h videomixer: Add support for YUY2, YVYU, UYVY 2010-04-29 19:28:22 +02:00
blendorc-dist.c Update generated orc code 2010-10-15 14:02:57 -07:00
blendorc-dist.h Update generated orc code 2010-10-15 14:02:57 -07:00
blendorc.orc videomixer: Optimize ARGB blending and implement BGRA blending with orc 2010-09-04 14:52:09 +02:00
gstcollectpads2.c videomixer2: Add videomixer2 element 2010-09-04 14:52:11 +02:00
gstcollectpads2.h videomixer2: Add videomixer2 element 2010-09-04 14:52:11 +02:00
Makefile.am videomixer2: Add documentation and add to the docs 2010-09-04 14:55:43 +02: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
videomixer.c videmixer: add a example showing how to use the child properties 2010-09-06 09:57:57 +03:00
videomixer.h videomixer: Move debug categories into the source files and add debug category for the blend functions 2010-08-04 19:43:08 +02:00
videomixer.vcproj more working plugins 2004-07-27 21:41:30 +00:00
videomixer2.c videomixer2: pre-register pad class properly with g_type_class_ref 2010-09-23 21:22:45 +01:00
videomixer2.h videomixer2: Add documentation and add to the docs 2010-09-04 14:55:43 +02:00
videomixer2pad.h videomixer2: Add documentation and add to the docs 2010-09-04 14:55:43 +02:00
videomixerpad.h videomixer: Don't mix input with different pixel aspect ratios 2010-06-01 11:21:29 +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