summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpgsmpay.h
diff options
context:
space:
mode:
authorZeeshan Ali <zeenix@gmail.com>2005-10-25 15:07:02 +0000
committerZeeshan Ali <zeenix@gmail.com>2005-10-25 15:07:02 +0000
commit240bea74177ed0d4a5cd333ed8e35a5cd1606997 (patch)
tree0c4cc6b461c376f71c3431783e64c716a93c9bda /gst/rtp/gstrtpgsmpay.h
parent4f40e2e01e913e7005d8f85d3c4694e8366c59d6 (diff)
Getting the GSM (de)payloader working and compatible with our plans for RTP.
Original commit message from CVS: Getting the GSM (de)payloader working and compatible with our plans for RTP.
Diffstat (limited to 'gst/rtp/gstrtpgsmpay.h')
-rw-r--r--gst/rtp/gstrtpgsmpay.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/gst/rtp/gstrtpgsmpay.h b/gst/rtp/gstrtpgsmpay.h
index 46fab46a..3b4ccabb 100644
--- a/gst/rtp/gstrtpgsmpay.h
+++ b/gst/rtp/gstrtpgsmpay.h
@@ -26,28 +26,26 @@
G_BEGIN_DECLS
-typedef struct _GstRtpGSMEnc GstRtpGSMEnc;
-typedef struct _GstRtpGSMEncClass GstRtpGSMEncClass;
+typedef struct _GstRTPGSMEnc GstRTPGSMEnc;
+typedef struct _GstRTPGSMEncClass GstRTPGSMEncClass;
#define GST_TYPE_RTP_GSM_ENC \
(gst_rtpgsmenc_get_type())
#define GST_RTP_GSM_ENC(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_GSM_ENC,GstRtpGSMEnc))
+ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_GSM_ENC,GstRTPGSMEnc))
#define GST_RTP_GSM_ENC_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_GSM_ENC,GstRtpGSMEnc))
+ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_GSM_ENC,GstRTPGSMEnc))
#define GST_IS_RTP_GSM_ENC(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_GSM_ENC))
#define GST_IS_RTP_GSM_ENC_CLASS(obj) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_GSM_ENC))
-struct _GstRtpGSMEnc
+struct _GstRTPGSMEnc
{
GstBaseRTPPayload payload;
-
- gint frequency;
};
-struct _GstRtpGSMEncClass
+struct _GstRTPGSMEncClass
{
GstBaseRTPPayloadClass parent_class;
};