1220d4029d2de41458afdd36d6aaa9d56e193ae8
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpgsmenc.h
1 /* Gnome-Streamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20
21 #ifndef __GST_RTP_GSM_ENC_H__
22 #define __GST_RTP_GSM_ENC_H__
23
24 #include <gst/gst.h>
25 #include "rtp-packet.h"
26 #include "gstrtp-common.h"
27
28 #ifdef __cplusplus
29 extern "C"
30 {
31 #endif                          /* __cplusplus */
32
33 /* Definition of structure storing data for this element. */
34 typedef struct _GstRtpGSMEnc GstRtpGSMEnc;
35 struct _GstRtpGSMEnc
36 {
37   GstElement element;
38
39   GstPad *sinkpad;
40   GstPad *srcpad;
41
42   guint frequency;
43
44   /* the timestamp of the next frame */
45   guint64 next_time;
46   /* the interval between frames */
47   guint64 time_interval;
48   
49   guint32 ssrc;
50   guint16 seq;
51 };
52
53 /* Standard definition defining a class for this element. */
54 typedef struct _GstRtpGSMEncClass GstRtpGSMEncClass;
55 struct _GstRtpGSMEncClass
56 {
57   GstElementClass parent_class;
58 };
59
60 /* Standard macros for defining types for this element.  */
61 #define GST_TYPE_RTP_GSM_ENC \
62   (gst_rtpgsmenc_get_type())
63 #define GST_RTP_GSM_ENC(obj) \
64   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_GSM_ENC,GstRtpGSMEnc))
65 #define GST_RTP_GSM_ENC_CLASS(klass) \
66   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_GSM_ENC,GstRtpGSMEnc))
67 #define GST_IS_RTP_GSM_ENC(obj) \
68   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_GSM_ENC))
69 #define GST_IS_RTP_GSM_ENC_CLASS(obj) \
70   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_GSM_ENC))
71
72 gboolean gst_rtpgsmenc_plugin_init (GstPlugin * plugin);
73
74 #ifdef __cplusplus
75 }
76 #endif                          /* __cplusplus */
77
78
79 #endif                          /* __GST_RTP_GSM_ENC_H__ */