Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / gst / videomixer / videomixerpad.h
1 /* Video mixer pad
2  * Copyright (C) 2008 Wim Taymans <wim@fluendo.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GST_VIDEO_MIXER_PAD_H__
21 #define __GST_VIDEO_MIXER_PAD_H__
22
23 #include <gst/gst.h>
24 #include <gst/base/gstcollectpads.h>
25
26 G_BEGIN_DECLS
27
28 #define GST_TYPE_VIDEO_MIXER_PAD (gst_videomixer_pad_get_type())
29 #define GST_VIDEO_MIXER_PAD(obj) \
30         (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VIDEO_MIXER_PAD, GstVideoMixerPad))
31 #define GST_VIDEO_MIXER_PAD_CLASS(klass) \
32         (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VIDEO_MIXER_PAD, GstVideoMixerPadiClass))
33 #define GST_IS_VIDEO_MIXER_PAD(obj) \
34         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VIDEO_MIXER_PAD))
35 #define GST_IS_VIDEO_MIXER_PAD_CLASS(klass) \
36         (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEO_MIXER_PAD))
37
38 typedef struct _GstVideoMixerPad GstVideoMixerPad;
39 typedef struct _GstVideoMixerPadClass GstVideoMixerPadClass;
40 typedef struct _GstVideoMixerCollect GstVideoMixerCollect;
41
42 struct _GstVideoMixerCollect
43 {
44   GstCollectData collect;       /* we extend the CollectData */
45
46   GstBuffer *buffer;            /* the queued buffer for this pad */
47
48   GstVideoMixerPad *mixpad;
49 };
50
51 /* all information needed for one video stream */
52 struct _GstVideoMixerPad
53 {
54   GstPad parent;                /* subclass the pad */
55
56   gint64 queued;
57
58   guint in_width, in_height;
59   gint fps_n;
60   gint fps_d;
61   gint par_n;
62   gint par_d;
63
64   gint xpos, ypos;
65   guint zorder;
66   gint blend_mode;
67   gdouble alpha;
68
69   GstVideoMixerCollect *mixcol;
70 };
71
72 struct _GstVideoMixerPadClass
73 {
74   GstPadClass parent_class;
75 };
76
77 G_END_DECLS
78 #endif /* __GST_VIDEO_MIXER_PAD_H__ */