devicemonitor: Add GstDeviceMonitor and related
[platform/upstream/gstreamer.git] / gst / gstdevice.h
1 /* GStreamer
2  * Copyright (C) 2012 Olivier Crete <olivier.crete@collabora.com>
3  *
4  * gstdevice.c: Device discovery
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
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  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22
23 #ifndef __GST_DEVICE_H__
24 #define __GST_DEVICE_H__
25
26 typedef struct _GstDevice GstDevice;
27 typedef struct _GstDeviceClass GstDeviceClass;
28
29 #include <gst/gstelement.h>
30 #include <gst/gstcaps.h>
31
32
33 G_BEGIN_DECLS
34
35 typedef struct _GstDevicePrivate GstDevicePrivate;
36
37 #define GST_TYPE_DEVICE                 (gst_device_get_type())
38 #define GST_IS_DEVICE(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_DEVICE))
39 #define GST_IS_DEVICE_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_DEVICE))
40 #define GST_DEVICE_GET_CLASS(obj)       (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_DEVICE, GstDeviceClass))
41 #define GST_DEVICE(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_DEVICE, GstDevice))
42 #define GST_DEVICE_CLASS(klass)         (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_DEVICE, GstDeviceClass))
43 #define GST_DEVICE_CAST(obj)            ((GstDevice *)(obj))
44
45
46 struct _GstDevice {
47   GstObject         parent;
48
49   /*< private >*/
50   GstDevicePrivate *priv;
51
52   gpointer _gst_reserved[GST_PADDING];
53 };
54
55 struct _GstDeviceClass {
56   GstObjectClass    parent_class;
57
58   GstElement * (*create_element) (GstDevice * device, const gchar * name);
59   gboolean (*reconfigure_element) (GstDevice * device, GstElement * element);
60
61   /*< private >*/
62   gpointer _gst_reserved[GST_PADDING];
63 };
64
65 GType        gst_device_get_type (void);
66
67 GstElement * gst_device_create_element (GstDevice * device, const gchar * name);
68
69 GstCaps *    gst_device_get_caps (GstDevice * device);
70 gchar *      gst_device_get_display_name (GstDevice * device);
71 gboolean     gst_device_reconfigure_element (GstDevice * device,
72                                              GstElement * element);
73
74 G_END_DECLS
75
76 #endif /* __GST_DEVICE_H__ */