2007-08-20 18:48:00 +00:00
|
|
|
/* GStreamer RTP DTMF source
|
|
|
|
*
|
|
|
|
* gstrtpdtmfsrc.h:
|
|
|
|
*
|
|
|
|
* Copyright (C) <2007> Nokia Corporation.
|
|
|
|
* Contact: Zeeshan Ali <zeeshan.ali@nokia.com>
|
|
|
|
* Copyright (C) <2005> Wim Taymans <wim@fluendo.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2007-08-20 18:48:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_RTP_DTMF_SRC_H__
|
|
|
|
#define __GST_RTP_DTMF_SRC_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2007-09-16 19:44:08 +00:00
|
|
|
#include <gst/base/gstbasesrc.h>
|
2007-08-20 18:48:00 +00:00
|
|
|
#include <gst/rtp/gstrtpbuffer.h>
|
|
|
|
|
2011-04-14 01:58:36 +00:00
|
|
|
#include "gstdtmfcommon.h"
|
2008-03-20 01:13:01 +00:00
|
|
|
|
2007-08-20 18:48:00 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GST_TYPE_RTP_DTMF_SRC (gst_rtp_dtmf_src_get_type())
|
|
|
|
#define GST_RTP_DTMF_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_DTMF_SRC,GstRTPDTMFSrc))
|
|
|
|
#define GST_RTP_DTMF_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_DTMF_SRC,GstRTPDTMFSrcClass))
|
|
|
|
#define GST_RTP_DTMF_SRC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTP_DTMF_SRC, GstRTPDTMFSrcClass))
|
|
|
|
#define GST_IS_RTP_DTMF_SRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_DTMF_SRC))
|
|
|
|
#define GST_IS_RTP_DTMF_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_DTMF_SRC))
|
|
|
|
#define GST_RTP_DTMF_SRC_CAST(obj) ((GstRTPDTMFSrc *)(obj))
|
|
|
|
typedef struct _GstRTPDTMFSrc GstRTPDTMFSrc;
|
|
|
|
typedef struct _GstRTPDTMFSrcClass GstRTPDTMFSrcClass;
|
|
|
|
|
2007-08-22 17:55:33 +00:00
|
|
|
|
|
|
|
|
2009-02-20 22:37:43 +00:00
|
|
|
enum _GstRTPDTMFEventType
|
|
|
|
{
|
2007-08-22 17:55:33 +00:00
|
|
|
RTP_DTMF_EVENT_TYPE_START,
|
2007-08-31 23:44:13 +00:00
|
|
|
RTP_DTMF_EVENT_TYPE_STOP,
|
|
|
|
RTP_DTMF_EVENT_TYPE_PAUSE_TASK
|
2007-08-22 17:55:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum _GstRTPDTMFEventType GstRTPDTMFEventType;
|
|
|
|
|
2009-02-20 22:37:43 +00:00
|
|
|
struct _GstRTPDTMFSrcEvent
|
|
|
|
{
|
|
|
|
GstRTPDTMFEventType event_type;
|
|
|
|
GstRTPDTMFPayload *payload;
|
2007-08-22 17:55:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _GstRTPDTMFSrcEvent GstRTPDTMFSrcEvent;
|
|
|
|
|
2007-08-20 18:48:00 +00:00
|
|
|
/**
|
|
|
|
* GstRTPDTMFSrc:
|
|
|
|
* @element: the parent element.
|
|
|
|
*
|
|
|
|
* The opaque #GstRTPDTMFSrc data structure.
|
|
|
|
*/
|
2009-02-20 22:37:43 +00:00
|
|
|
struct _GstRTPDTMFSrc
|
|
|
|
{
|
2009-02-20 22:40:57 +00:00
|
|
|
/*< private >*/
|
2009-02-20 22:37:43 +00:00
|
|
|
GstBaseSrc basesrc;
|
|
|
|
|
|
|
|
GAsyncQueue *event_queue;
|
|
|
|
GstClockID clockid;
|
|
|
|
gboolean paused;
|
|
|
|
GstRTPDTMFPayload *payload;
|
|
|
|
|
|
|
|
GstClockTime timestamp;
|
|
|
|
GstClockTime start_timestamp;
|
|
|
|
gboolean first_packet;
|
|
|
|
gboolean last_packet;
|
|
|
|
guint32 ts_base;
|
|
|
|
guint16 seqnum_base;
|
|
|
|
gint16 seqnum_offset;
|
|
|
|
guint16 seqnum;
|
|
|
|
gint32 ts_offset;
|
|
|
|
guint32 rtp_timestamp;
|
|
|
|
guint pt;
|
|
|
|
guint ssrc;
|
|
|
|
guint current_ssrc;
|
2011-04-14 20:49:39 +00:00
|
|
|
guint16 ptime;
|
2009-02-20 22:37:43 +00:00
|
|
|
guint16 packet_redundancy;
|
|
|
|
guint32 clock_rate;
|
2011-11-04 21:54:04 +00:00
|
|
|
gboolean last_event_was_start;
|
2009-02-20 22:37:43 +00:00
|
|
|
|
2011-04-14 21:08:57 +00:00
|
|
|
GstClockTime last_stop;
|
|
|
|
|
2009-02-20 22:37:43 +00:00
|
|
|
gboolean dirty;
|
|
|
|
guint16 redundancy_count;
|
2007-08-20 18:48:00 +00:00
|
|
|
};
|
|
|
|
|
2009-02-20 22:37:43 +00:00
|
|
|
struct _GstRTPDTMFSrcClass
|
|
|
|
{
|
2007-09-16 19:44:08 +00:00
|
|
|
GstBaseSrcClass parent_class;
|
2007-08-20 18:48:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_rtp_dtmf_src_get_type (void);
|
|
|
|
|
2007-08-20 18:48:52 +00:00
|
|
|
gboolean gst_rtp_dtmf_src_plugin_init (GstPlugin * plugin);
|
|
|
|
|
|
|
|
|
2007-08-20 18:48:00 +00:00
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_RTP_DTMF_SRC_H__ */
|