[MOVED FROM GST-P-FARSIGHT] Added a queue based system for the dtmfsrc. Now it waits...
[platform/upstream/gst-plugins-good.git] / gst / dtmf / gstdtmfsrc.h
1 /* GStreamer DTMF source
2  *
3  * gstdtmfsrc.h:
4  *
5  * Copyright (C) <2007> Collabora.
6  *   Contact: Youness Alaoui <youness.alaoui@collabora.co.uk>
7  * Copyright (C) <2007> Nokia Corporation.
8  *   Contact: Zeeshan Ali <zeeshan.ali@nokia.com>
9  * Copyright (C) <2005> Wim Taymans <wim@fluendo.com>
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Library General Public
13  * License as published by the Free Software Foundation; either
14  * version 2 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Library General Public License for more details.
20  *
21  * You should have received a copy of the GNU Library General Public
22  * License along with this library; if not, write to the
23  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24  * Boston, MA 02111-1307, USA.
25  */
26
27 #ifndef __GST_DTMF_SRC_H__
28 #define __GST_DTMF_SRC_H__
29
30 #include <gst/gst.h>
31 #include <gst/gstbuffer.h>
32
33 G_BEGIN_DECLS
34
35 #define GST_TYPE_DTMF_SRC               (gst_dtmf_src_get_type())
36 #define GST_DTMF_SRC(obj)               (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DTMF_SRC,GstDTMFSrc))
37 #define GST_DTMF_SRC_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DTMF_SRC,GstDTMFSrcClass))
38 #define GST_DTMF_SRC_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_DTMF_SRC, GstDTMFSrcClass))
39 #define GST_IS_DTMF_SRC(obj)            (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DTMF_SRC))
40 #define GST_IS_DTMF_SRC_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DTMF_SRC))
41 #define GST_DTMF_SRC_CAST(obj)          ((GstDTMFSrc *)(obj))
42
43 typedef struct _GstDTMFSrc GstDTMFSrc;
44 typedef struct _GstDTMFSrcClass GstDTMFSrcClass;
45
46 /**
47  * GstDTMFSrc:
48  * @element: the parent element.
49  *
50  * The opaque #GstDTMFSrc data structure.
51  */
52
53 enum _GstDTMFEventType {
54   DTMF_EVENT_TYPE_START,
55   DTMF_EVENT_TYPE_STOP
56 };
57
58 typedef enum _GstDTMFEventType GstDTMFEventType;
59
60 struct _GstDTMFSrcEvent {
61   GstClockTime      timestamp;
62   GstDTMFEventType  event_type;
63   double            sample;
64   guint16           event_number;
65   guint16           volume;
66   guint32           packet_count;
67 };
68
69 typedef struct _GstDTMFSrcEvent GstDTMFSrcEvent;
70
71 struct _GstDTMFSrc {
72   GstElement        element;
73   GstPad            *srcpad;
74   GstSegment        segment;
75   GAsyncQueue*      event_queue;
76   GstDTMFSrcEvent*  last_event;
77
78   guint16           interval;
79 };
80
81
82 struct _GstDTMFSrcClass {
83   GstElementClass parent_class;
84 };
85
86 GType gst_dtmf_src_get_type (void);
87
88 gboolean gst_dtmf_src_plugin_init (GstPlugin * plugin);
89
90 G_END_DECLS
91
92 #endif /* __GST_DTMF_SRC_H__ */