1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/*
* Copyright © 2007,2008 Jaap Haitsma <jaap@haitsma.org>
* Copyright © 2007,2008 daniel g. siegel <dgsiegel@gnome.org>
* Copyright © 2008 Ryan zeigler <zeiglerr@gmail.com>
*
* Licensed under the GNU General Public License Version 2
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __CHEESE_WEBCAM_H__
#define __CHEESE_WEBCAM_H__
#include <glib-object.h>
#include <gtk/gtk.h>
#include <gst/interfaces/xoverlay.h>
G_BEGIN_DECLS
#define CHEESE_TYPE_WEBCAM (cheese_webcam_get_type ())
#define CHEESE_WEBCAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CHEESE_TYPE_WEBCAM, CheeseWebcam))
#define CHEESE_WEBCAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), CHEESE_TYPE_WEBCAM, CheeseWebcamClass))
#define CHEESE_IS_WEBCAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CHEESE_TYPE_WEBCAM))
#define CHEESE_IS_WEBCAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CHEESE_TYPE_WEBCAM))
#define CHEESE_WEBCAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CHEESE_TYPE_WEBCAM, CheeseWebcamClass))
typedef struct
{
int numerator;
int denominator;
} CheeseFramerate;
typedef struct
{
char *mimetype;
int width;
int height;
int num_framerates;
CheeseFramerate *framerates;
CheeseFramerate highest_framerate;
} CheeseVideoFormat;
typedef struct
{
char *video_device;
char *hal_udi;
char *gstreamer_src;
char *product_name;
int num_video_formats;
GArray *video_formats;
/* Hash table for resolution based lookup of video_formats */
GHashTable *supported_resolutions;
} CheeseWebcamDevice;
typedef enum
{
CHEESE_WEBCAM_EFFECT_NO_EFFECT = (0),
CHEESE_WEBCAM_EFFECT_MAUVE = (1 << 0),
CHEESE_WEBCAM_EFFECT_NOIR_BLANC = (1 << 1),
CHEESE_WEBCAM_EFFECT_SATURATION = (1 << 2),
CHEESE_WEBCAM_EFFECT_HULK = (1 << 3),
CHEESE_WEBCAM_EFFECT_VERTICAL_FLIP = (1 << 4),
CHEESE_WEBCAM_EFFECT_HORIZONTAL_FLIP = (1 << 5),
CHEESE_WEBCAM_EFFECT_SHAGADELIC = (1 << 6),
CHEESE_WEBCAM_EFFECT_VERTIGO = (1 << 7),
CHEESE_WEBCAM_EFFECT_EDGE = (1 << 8),
CHEESE_WEBCAM_EFFECT_DICE = (1 << 9),
CHEESE_WEBCAM_EFFECT_WARP = (1 << 10),
}
CheeseWebcamEffect;
typedef struct
{
GObject parent;
} CheeseWebcam;
typedef struct
{
GObjectClass parent_class;
void (*photo_saved) (CheeseWebcam *webcam);
void (*video_saved) (CheeseWebcam *webcam);
} CheeseWebcamClass;
GType cheese_webcam_get_type (void);
CheeseWebcam *cheese_webcam_new (GtkWidget *video_window,
char *webcam_device_name,
int x_resolution,
int y_resolution);
CheeseVideoFormat *cheese_webcam_get_current_video_format (CheeseWebcam *webcam);
void cheese_webcam_setup (CheeseWebcam *webcam, char *udi, GError **error);
void cheese_webcam_play (CheeseWebcam *webcam);
void cheese_webcam_stop (CheeseWebcam *webcam);
void cheese_webcam_set_effect (CheeseWebcam *webcam, CheeseWebcamEffect effect);
void cheese_webcam_start_video_recording (CheeseWebcam *webcam, char *filename);
void cheese_webcam_stop_video_recording (CheeseWebcam *webcam);
gboolean cheese_webcam_take_photo (CheeseWebcam *webcam, char *filename);
gboolean cheese_webcam_has_webcam (CheeseWebcam *webcam);
int cheese_webcam_get_num_webcam_devices (CheeseWebcam *webcam);
int cheese_webcam_get_selected_device_index (CheeseWebcam *webcam);
GArray * cheese_webcam_get_webcam_devices (CheeseWebcam *webcam);
void cheese_webcam_set_device_by_dev_file (CheeseWebcam *webcam, char *file);
void cheese_webcam_set_device_by_dev_udi (CheeseWebcam *webcam, char *udi);
gboolean cheese_webcam_switch_webcam_device (CheeseWebcam *webcam);
GArray * cheese_webcam_get_video_formats (CheeseWebcam *webcam);
void cheese_webcam_set_video_format (CheeseWebcam *webcam,
CheeseVideoFormat *format);
void cheese_webcam_get_balance_property_range (CheeseWebcam *webcam,
gchar *property,
gdouble *min, gdouble *max, gdouble *def);
void cheese_webcam_set_balance_property (CheeseWebcam *webcam, gchar *property, gdouble value);
G_END_DECLS
#endif /* __CHEESE_WEBCAM_H__ */
|