Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / gst / smpte / gstmask.c
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 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include "gstmask.h"
25 #include "paint.h"
26
27 static GList *masks = NULL;
28
29 void
30 _gst_mask_init (void)
31 {
32   _gst_barboxwipes_register ();
33 }
34
35 static gint
36 gst_mask_compare (GstMaskDefinition * def1, GstMaskDefinition * def2)
37 {
38   return (def1->type - def2->type);
39 }
40
41 void
42 _gst_mask_register (const GstMaskDefinition * definition)
43 {
44   masks =
45       g_list_insert_sorted (masks, (gpointer) definition,
46       (GCompareFunc) gst_mask_compare);
47 }
48
49 const GList *
50 gst_mask_get_definitions (void)
51 {
52   return masks;
53 }
54
55 static GstMaskDefinition *
56 gst_mask_find_definition (gint type)
57 {
58   GList *walk = masks;
59
60   while (walk) {
61     GstMaskDefinition *def = (GstMaskDefinition *) walk->data;
62
63     if (def->type == type)
64       return def;
65
66     walk = g_list_next (walk);
67   }
68   return NULL;
69 }
70
71 GstMask *
72 gst_mask_factory_new (gint type, gboolean invert, gint bpp, gint width,
73     gint height)
74 {
75   GstMaskDefinition *definition;
76   GstMask *mask = NULL;
77
78   definition = gst_mask_find_definition (type);
79   if (definition) {
80     mask = g_new0 (GstMask, 1);
81
82     mask->type = definition->type;
83     mask->bpp = bpp;
84     mask->width = width;
85     mask->height = height;
86     mask->destroy_func = definition->destroy_func;
87     mask->user_data = definition->user_data;
88     mask->data = g_malloc (width * height * sizeof (guint32));
89
90     definition->draw_func (mask);
91
92     if (invert) {
93       gint i, j;
94       guint32 *datap = mask->data;
95       guint32 max = (1 << bpp);
96
97       for (i = 0; i < height; i++) {
98         for (j = 0; j < width; j++) {
99           *datap = max - *datap;
100           datap++;
101         }
102       }
103     }
104   }
105
106   return mask;
107 }
108
109 void
110 _gst_mask_default_destroy (GstMask * mask)
111 {
112   g_free (mask->data);
113   g_free (mask);
114 }
115
116 void
117 gst_mask_destroy (GstMask * mask)
118 {
119   if (mask->destroy_func)
120     mask->destroy_func (mask);
121 }