gst-indent
[platform/upstream/gst-plugins-good.git] / gst / smpte / gstmask.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
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
21 #ifndef __GST_MASK_H__
22 #define __GST_MASK_H__
23
24 #include <gst/gst.h>
25
26
27 typedef struct _GstMask GstMask;
28 typedef struct _GstMaskDefinition GstMaskDefinition;
29
30 typedef void (*GstMaskDrawFunc) (GstMask * mask);
31 typedef void (*GstMaskDestroyFunc) (GstMask * mask);
32
33 struct _GstMaskDefinition
34 {
35   gint type;
36   gchar *short_name;
37   gchar *long_name;
38   GstMaskDrawFunc draw_func;
39   GstMaskDestroyFunc destroy_func;
40   gpointer user_data;
41 };
42
43 struct _GstMask
44 {
45   gint type;
46   guint32 *data;
47   gpointer user_data;
48
49   gint width;
50   gint height;
51   gint bpp;
52
53   GstMaskDestroyFunc destroy_func;
54 };
55
56 void _gst_mask_init (void);
57 void _gst_mask_register (GstMaskDefinition * definition);
58
59 void _gst_mask_default_destroy (GstMask * mask);
60
61 const GList *gst_mask_get_definitions (void);
62 GstMask *gst_mask_factory_new (gint type, gint bpp, gint width, gint height);
63 void gst_mask_destroy (GstMask * mask);
64
65 #endif /* __GST_MASK_H__ */