summaryrefslogtreecommitdiff
path: root/gst/videomixer/blend.h
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2010-04-20 12:18:18 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-04-29 19:28:22 +0200
commitbd0b307a74feb3712640530ff4a23c3d96563431 (patch)
tree8bc46ee3dd8628a7b3e2ffdc8f1ecc3652f64d38 /gst/videomixer/blend.h
parent314fbd80e83bd6d88f094d7eaee7b0d73f6e037f (diff)
videomixer: Add support for Y444, Y42B, Y41B and YV12
Diffstat (limited to 'gst/videomixer/blend.h')
-rw-r--r--gst/videomixer/blend.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/gst/videomixer/blend.h b/gst/videomixer/blend.h
index 8c8343864..3c0a2d883 100644
--- a/gst/videomixer/blend.h
+++ b/gst/videomixer/blend.h
@@ -32,6 +32,10 @@ extern BlendFunction gst_video_mixer_blend_bgra;
#define gst_video_mixer_blend_abgr gst_video_mixer_blend_argb
#define gst_video_mixer_blend_rgba gst_video_mixer_blend_bgra
extern BlendFunction gst_video_mixer_blend_i420;
+#define gst_video_mixer_blend_yv12 gst_video_mixer_blend_i420
+extern BlendFunction gst_video_mixer_blend_y41b;
+extern BlendFunction gst_video_mixer_blend_y42b;
+extern BlendFunction gst_video_mixer_blend_y444;
extern BlendFunction gst_video_mixer_blend_rgb;
#define gst_video_mixer_blend_bgr gst_video_mixer_blend_rgb
extern BlendFunction gst_video_mixer_blend_rgbx;
@@ -45,6 +49,10 @@ extern FillCheckerFunction gst_video_mixer_fill_checker_bgra;
#define gst_video_mixer_fill_checker_rgba gst_video_mixer_fill_checker_bgra
extern FillCheckerFunction gst_video_mixer_fill_checker_ayuv;
extern FillCheckerFunction gst_video_mixer_fill_checker_i420;
+#define gst_video_mixer_fill_checker_yv12 gst_video_mixer_fill_checker_i420
+extern FillCheckerFunction gst_video_mixer_fill_checker_y41b;
+extern FillCheckerFunction gst_video_mixer_fill_checker_y42b;
+extern FillCheckerFunction gst_video_mixer_fill_checker_y444;
extern FillCheckerFunction gst_video_mixer_fill_checker_rgb;
#define gst_video_mixer_fill_checker_bgr gst_video_mixer_fill_checker_rgb
extern FillCheckerFunction gst_video_mixer_fill_checker_rgbx;
@@ -58,6 +66,10 @@ extern FillColorFunction gst_video_mixer_fill_color_bgra;
extern FillColorFunction gst_video_mixer_fill_color_rgba;
extern FillColorFunction gst_video_mixer_fill_color_ayuv;
extern FillColorFunction gst_video_mixer_fill_color_i420;
+extern FillColorFunction gst_video_mixer_fill_color_yv12;
+extern FillColorFunction gst_video_mixer_fill_color_y41b;
+extern FillColorFunction gst_video_mixer_fill_color_y42b;
+extern FillColorFunction gst_video_mixer_fill_color_y444;
extern FillColorFunction gst_video_mixer_fill_color_rgb;
extern FillColorFunction gst_video_mixer_fill_color_bgr;
extern FillColorFunction gst_video_mixer_fill_color_xrgb;