Update python binding
[empathy.git] / libempathy-gtk / empathy-video-src.c
blobd2d03026b407b21c663f19d7f3f295129b8cd884
1 /*
2 * empathy-gst-video-src.c - Source for EmpathyGstVideoSrc
3 * Copyright (C) 2008 Collabora Ltd.
4 * @author Sjoerd Simons <sjoerd.simons@collabora.co.uk>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include <stdio.h>
23 #include <stdlib.h>
25 #include <gst/interfaces/colorbalance.h>
27 #include "empathy-video-src.h"
29 G_DEFINE_TYPE(EmpathyGstVideoSrc, empathy_video_src, GST_TYPE_BIN)
31 /* Keep in sync with EmpathyGstVideoSrcChannel */
32 static gchar *channel_names[NR_EMPATHY_GST_VIDEO_SRC_CHANNELS] = { "contrast",
33 "brightness", "gamma" };
35 /* signal enum */
36 #if 0
37 enum
39 LAST_SIGNAL
42 static guint signals[LAST_SIGNAL] = {0};
43 #endif
45 /* private structure */
46 typedef struct _EmpathyGstVideoSrcPrivate EmpathyGstVideoSrcPrivate;
48 struct _EmpathyGstVideoSrcPrivate
50 gboolean dispose_has_run;
51 GstElement *src;
52 /* Element implementing a ColorBalance interface */
53 GstElement *balance;
56 #define EMPATHY_GST_VIDEO_SRC_GET_PRIVATE(o) \
57 (G_TYPE_INSTANCE_GET_PRIVATE ((o), EMPATHY_TYPE_GST_VIDEO_SRC, \
58 EmpathyGstVideoSrcPrivate))
60 static void
61 empathy_video_src_init (EmpathyGstVideoSrc *obj)
63 EmpathyGstVideoSrcPrivate *priv = EMPATHY_GST_VIDEO_SRC_GET_PRIVATE (obj);
64 GstElement *scale, *colorspace, *capsfilter;
65 GstPad *ghost, *src;
66 GstCaps *caps;
68 /* allocate any data required by the object here */
69 scale = gst_element_factory_make ("videoscale", NULL);
70 colorspace = gst_element_factory_make ("ffmpegcolorspace", NULL);
72 capsfilter = gst_element_factory_make ("capsfilter", NULL);
73 caps = gst_caps_new_simple ("video/x-raw-yuv",
74 "width", G_TYPE_INT, 320,
75 "height", G_TYPE_INT, 240,
76 NULL);
78 g_object_set (G_OBJECT (capsfilter), "caps", caps, NULL);
80 priv->src = gst_element_factory_make ("gconfvideosrc", NULL);
82 gst_bin_add_many (GST_BIN (obj), priv->src, scale, colorspace, capsfilter,
83 NULL);
84 gst_element_link_many (priv->src, scale, colorspace, capsfilter, NULL);
86 src = gst_element_get_static_pad (capsfilter, "src");
88 ghost = gst_ghost_pad_new ("src", src);
89 gst_element_add_pad (GST_ELEMENT (obj), ghost);
91 gst_object_unref (G_OBJECT (src));
94 static void empathy_video_src_dispose (GObject *object);
95 static void empathy_video_src_finalize (GObject *object);
97 static void
98 empathy_video_src_class_init (EmpathyGstVideoSrcClass *empathy_video_src_class)
100 GObjectClass *object_class = G_OBJECT_CLASS (empathy_video_src_class);
102 g_type_class_add_private (empathy_video_src_class,
103 sizeof (EmpathyGstVideoSrcPrivate));
105 object_class->dispose = empathy_video_src_dispose;
106 object_class->finalize = empathy_video_src_finalize;
109 void
110 empathy_video_src_dispose (GObject *object)
112 EmpathyGstVideoSrc *self = EMPATHY_GST_VIDEO_SRC (object);
113 EmpathyGstVideoSrcPrivate *priv = EMPATHY_GST_VIDEO_SRC_GET_PRIVATE (self);
115 if (priv->dispose_has_run)
116 return;
118 priv->dispose_has_run = TRUE;
120 /* release any references held by the object here */
122 if (G_OBJECT_CLASS (empathy_video_src_parent_class)->dispose)
123 G_OBJECT_CLASS (empathy_video_src_parent_class)->dispose (object);
126 void
127 empathy_video_src_finalize (GObject *object)
129 //EmpathyGstVideoSrc *self = EMPATHY_GST_VIDEO_SRC (object);
130 //EmpathyGstVideoSrcPrivate *priv = EMPATHY_GST_VIDEO_SRC_GET_PRIVATE (self);
132 /* free any data held directly by the object here */
134 G_OBJECT_CLASS (empathy_video_src_parent_class)->finalize (object);
137 GstElement *
138 empathy_video_src_new (void)
140 return GST_ELEMENT (g_object_new (EMPATHY_TYPE_GST_VIDEO_SRC, NULL));
143 void
144 empathy_video_src_set_channel (GstElement *src,
145 EmpathyGstVideoSrcChannel channel, guint percent)
147 GstElement *color;
148 GstColorBalance *balance;
149 const GList *channels;
150 GList *l;
152 /* Find something supporting GstColorBalance */
153 color = gst_bin_get_by_interface (GST_BIN (src), GST_TYPE_COLOR_BALANCE);
155 if (color == NULL)
156 return;
158 balance = GST_COLOR_BALANCE (color);
160 channels = gst_color_balance_list_channels (balance);
162 for (l = (GList *)channels; l != NULL; l = g_list_next (l))
164 GstColorBalanceChannel *c = GST_COLOR_BALANCE_CHANNEL (l->data);
166 if (g_ascii_strcasecmp (c->label, channel_names[channel]) == 0)
168 gst_color_balance_set_value (balance, c,
169 ((c->max_value - c->min_value) * percent)/100
170 + c->min_value);
171 break;
175 g_object_unref (color);
178 guint
179 empathy_video_src_get_channel (GstElement *src,
180 EmpathyGstVideoSrcChannel channel)
182 GstElement *color;
183 GstColorBalance *balance;
184 const GList *channels;
185 GList *l;
186 guint percent = 0;
188 /* Find something supporting GstColorBalance */
189 color = gst_bin_get_by_interface (GST_BIN (src), GST_TYPE_COLOR_BALANCE);
191 if (color == NULL)
192 return percent;
194 balance = GST_COLOR_BALANCE (color);
196 channels = gst_color_balance_list_channels (balance);
198 for (l = (GList *)channels; l != NULL; l = g_list_next (l))
200 GstColorBalanceChannel *c = GST_COLOR_BALANCE_CHANNEL (l->data);
202 if (g_ascii_strcasecmp (c->label, channel_names[channel]) == 0)
204 percent =
205 ((gst_color_balance_get_value (balance, c)
206 - c->min_value) * 100) /
207 (c->max_value - c->min_value);
209 break;
213 g_object_unref (color);
215 return percent;
219 guint
220 empathy_video_src_get_supported_channels (GstElement *src)
222 GstElement *color;
223 GstColorBalance *balance;
224 const GList *channels;
225 GList *l;
226 guint result = 0;
228 /* Find something supporting GstColorBalance */
229 color = gst_bin_get_by_interface (GST_BIN (src), GST_TYPE_COLOR_BALANCE);
231 if (color == NULL)
232 goto out;
234 balance = GST_COLOR_BALANCE (color);
236 channels = gst_color_balance_list_channels (balance);
238 for (l = (GList *)channels; l != NULL; l = g_list_next (l))
240 GstColorBalanceChannel *channel = GST_COLOR_BALANCE_CHANNEL (l->data);
241 int i;
243 for (i = 0; i < NR_EMPATHY_GST_VIDEO_SRC_CHANNELS; i++)
245 if (g_ascii_strcasecmp (channel->label, channel_names[i]) == 0)
247 result |= (1 << i);
248 break;
253 g_object_unref (color);
255 out:
256 return result;