Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.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
30 #define GST_TYPE_ESDMON \
31   (gst_esdmon_get_type())
32 #define GST_ESDMON(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_ESDMON,GstEsdmon))
34 #define GST_ESDMON_CLASS(klass) \
35   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ESDMON,GstEsdmonClass))
36 #define GST_IS_ESDMON(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_ESDMON))
38 #define GST_IS_ESDMON_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_ESDMON))
40
41 typedef enum {
42   GST_ESDMON_OPEN            = (GST_ELEMENT_FLAG_LAST << 0),
43   GST_ESDMON_FLAG_LAST       = (GST_ELEMENT_FLAG_LAST << 2)
44 } GstEsdSrcFlags;
45
46 typedef struct _GstEsdmon GstEsdmon;
47 typedef struct _GstEsdmonClass GstEsdmonClass;
48
49 struct _GstEsdmon {
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   GstElementClass parent_class;
70 };
71
72 GType gst_esdmon_get_type (void);
73
74 G_END_DECLS
75
76 #endif /* __GST_ESDMON_H__ */
77