2 * empathy-gst-video-src.h - Header 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
21 #ifndef __EMPATHY_GST_VIDEO_SRC_H__
22 #define __EMPATHY_GST_VIDEO_SRC_H__
28 typedef struct _EmpathyGstVideoSrc EmpathyGstVideoSrc
;
29 typedef struct _EmpathyGstVideoSrcClass EmpathyGstVideoSrcClass
;
32 EMPATHY_GST_VIDEO_SRC_CHANNEL_CONTRAST
= 0,
33 EMPATHY_GST_VIDEO_SRC_CHANNEL_BRIGHTNESS
= 1,
34 EMPATHY_GST_VIDEO_SRC_CHANNEL_GAMMA
= 2,
35 NR_EMPATHY_GST_VIDEO_SRC_CHANNELS
36 } EmpathyGstVideoSrcChannel
;
38 #define EMPATHY_GST_VIDEO_SRC_SUPPORTS_CONTRAST \
39 (1 << EMPATHY_GST_VIDEO_SRC_CHANNEL_CONTRAST)
40 #define EMPATHY_GST_VIDEO_SRC_SUPPORTS_BRIGHTNESS \
41 (1 << EMPATHY_GST_VIDEO_SRC_CHANNEL_BRIGHTNESS)
42 #define EMPATHY_GST_VIDEO_SRC_SUPPORTS_GAMMA \
43 (1 << EMPATHY_GST_VIDEO_SRC_CHANNEL_GAMMA)
45 struct _EmpathyGstVideoSrcClass
{
46 GstBinClass parent_class
;
49 struct _EmpathyGstVideoSrc
{
53 GType
empathy_video_src_get_type (void);
56 #define EMPATHY_TYPE_GST_VIDEO_SRC \
57 (empathy_video_src_get_type ())
58 #define EMPATHY_GST_VIDEO_SRC(obj) \
59 (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_GST_VIDEO_SRC, \
61 #define EMPATHY_GST_VIDEO_SRC_CLASS(klass) \
62 (G_TYPE_CHECK_CLASS_CAST((klass), EMPATHY_TYPE_GST_VIDEO_SRC, \
63 EmpathyGstVideoSrcClass))
64 #define EMPATHY_IS_GST_VIDEO_SRC(obj) \
65 (G_TYPE_CHECK_INSTANCE_TYPE((obj), EMPATHY_TYPE_GST_VIDEO_SRC))
66 #define EMPATHY_IS_GST_VIDEO_SRC_CLASS(klass) \
67 (G_TYPE_CHECK_CLASS_TYPE((klass), EMPATHY_TYPE_GST_VIDEO_SRC))
68 #define EMPATHY_GST_VIDEO_SRC_GET_CLASS(obj) \
69 (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_GST_VIDEO_SRC, \
70 EmpathyGstVideoSrcClass))
72 GstElement
*empathy_video_src_new (void);
75 empathy_video_src_get_supported_channels (GstElement
*src
);
77 void empathy_video_src_set_channel (GstElement
*src
,
78 EmpathyGstVideoSrcChannel channel
, guint percent
);
80 guint
empathy_video_src_get_channel (GstElement
*src
,
81 EmpathyGstVideoSrcChannel channel
);
83 void empathy_video_src_change_device (EmpathyGstVideoSrc
*self
,
85 gchar
* empathy_video_src_dup_device (EmpathyGstVideoSrc
*self
);
87 void empathy_video_src_set_framerate (GstElement
*src
,
90 void empathy_video_src_set_resolution (GstElement
*src
,
91 guint width
, guint height
);
95 #endif /* #ifndef __EMPATHY_GST_VIDEO_SRC_H__*/