gst-indent
[platform/upstream/gst-plugins-good.git] / ext / esd / esdmon.h
1 /* GStreamer
2  * Copyright (C) <2001,2002> Richard Boulton <richard-gst@tartarus.org>
3  *
4  * Based on example.c:
5  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __GST_ESDMON_H__
24 #define __GST_ESDMON_H__
25
26 #include <gst/gst.h>
27
28 G_BEGIN_DECLS
29 #define GST_TYPE_ESDMON \
30   (gst_esdmon_get_type())
31 #define GST_ESDMON(obj) \
32   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_ESDMON,GstEsdmon))
33 #define GST_ESDMON_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ESDMON,GstEsdmon))
35 #define GST_IS_ESDMON(obj) \
36   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_ESDMON))
37 #define GST_IS_ESDMON_CLASS(obj) \
38   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_ESDMON))
39     typedef enum
40 {
41   GST_ESDMON_OPEN = GST_ELEMENT_FLAG_LAST,
42   GST_ESDMON_FLAG_LAST = GST_ELEMENT_FLAG_LAST + 2,
43 } GstEsdSrcFlags;
44
45 typedef struct _GstEsdmon GstEsdmon;
46 typedef struct _GstEsdmonClass GstEsdmonClass;
47
48 struct _GstEsdmon
49 {
50   GstElement element;
51
52   GstPad *srcpad;
53
54   gchar *host;
55
56   int fd;
57
58   gint depth;
59   gint channels;
60   gint frequency;
61
62   guint64 basetime;
63   guint64 samples_since_basetime;
64   guint64 curoffset;
65   guint64 bytes_per_read;
66 };
67
68 struct _GstEsdmonClass
69 {
70   GstElementClass parent_class;
71 };
72
73 GType gst_esdmon_get_type (void);
74 gboolean gst_esdmon_factory_init (GstPlugin * plugin);
75
76 G_END_DECLS
77 #endif /* __GST_ESDMON_H__ */