summaryrefslogtreecommitdiff
path: root/gst/rtpmanager/gstrtpjitterbuffer.h
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-08-23 21:39:58 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-08-11 02:30:29 +0100
commit10d6ba4d6163a6e8e10cc302a5d114098ab538cf (patch)
tree698bb6467e1bca7d310b4711cc3d5faaf0860ec3 /gst/rtpmanager/gstrtpjitterbuffer.h
parentf13ad91c77218f69ac5256632607ab6d3f087874 (diff)
Rename all GstRTPFoo structs to GstRtpFoo so that GST_BOILERPLATE registers a GType that's different than the GstRTPF...
Original commit message from CVS: * docs/plugins/gst-plugins-bad-plugins-sections.txt: * docs/plugins/gst-plugins-bad-plugins.hierarchy: * docs/plugins/gst-plugins-bad-plugins.interfaces: * docs/plugins/gst-plugins-bad-plugins.signals: * gst/rtpmanager/gstrtpbin.c: * gst/rtpmanager/gstrtpbin.h: * gst/rtpmanager/gstrtpclient.c: * gst/rtpmanager/gstrtpclient.h: * gst/rtpmanager/gstrtpjitterbuffer.c: * gst/rtpmanager/gstrtpjitterbuffer.h: * gst/rtpmanager/gstrtpptdemux.c: * gst/rtpmanager/gstrtpptdemux.h: * gst/rtpmanager/gstrtpsession.c: * gst/rtpmanager/gstrtpsession.h: * gst/rtpmanager/gstrtpssrcdemux.c: * gst/rtpmanager/gstrtpssrcdemux.h: Rename all GstRTPFoo structs to GstRtpFoo so that GST_BOILERPLATE registers a GType that's different than the GstRTPFoo types that farsight registers (luckily GType names are case sensitive). Should finally fix #430664.
Diffstat (limited to 'gst/rtpmanager/gstrtpjitterbuffer.h')
-rw-r--r--gst/rtpmanager/gstrtpjitterbuffer.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/gst/rtpmanager/gstrtpjitterbuffer.h b/gst/rtpmanager/gstrtpjitterbuffer.h
index 0b0ac1af0..15abdc37f 100644
--- a/gst/rtpmanager/gstrtpjitterbuffer.h
+++ b/gst/rtpmanager/gstrtpjitterbuffer.h
@@ -36,42 +36,42 @@ G_BEGIN_DECLS
(gst_rtp_jitter_buffer_get_type())
#define GST_RTP_JITTER_BUFFER(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), \
- GST_TYPE_RTP_JITTER_BUFFER,GstRTPJitterBuffer))
+ GST_TYPE_RTP_JITTER_BUFFER,GstRtpJitterBuffer))
#define GST_RTP_JITTER_BUFFER_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass), \
- GST_TYPE_RTP_JITTER_BUFFER,GstRTPJitterBufferClass))
+ GST_TYPE_RTP_JITTER_BUFFER,GstRtpJitterBufferClass))
#define GST_IS_RTP_JITTER_BUFFER(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_JITTER_BUFFER))
#define GST_IS_RTP_JITTER_BUFFER_CLASS(obj) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_JITTER_BUFFER))
-typedef struct _GstRTPJitterBuffer GstRTPJitterBuffer;
-typedef struct _GstRTPJitterBufferClass GstRTPJitterBufferClass;
-typedef struct _GstRTPJitterBufferPrivate GstRTPJitterBufferPrivate;
+typedef struct _GstRtpJitterBuffer GstRtpJitterBuffer;
+typedef struct _GstRtpJitterBufferClass GstRtpJitterBufferClass;
+typedef struct _GstRtpJitterBufferPrivate GstRtpJitterBufferPrivate;
/**
- * GstRTPJitterBuffer:
+ * GstRtpJitterBuffer:
*
* Opaque jitterbuffer structure.
*/
-struct _GstRTPJitterBuffer
+struct _GstRtpJitterBuffer
{
GstElement parent;
/*< private >*/
- GstRTPJitterBufferPrivate *priv;
+ GstRtpJitterBufferPrivate *priv;
gpointer _gst_reserved[GST_PADDING];
};
-struct _GstRTPJitterBufferClass
+struct _GstRtpJitterBufferClass
{
GstElementClass parent_class;
/* signals */
- GstCaps* (*request_pt_map) (GstRTPJitterBuffer *buffer, guint pt);
+ GstCaps* (*request_pt_map) (GstRtpJitterBuffer *buffer, guint pt);
- void (*clear_pt_map) (GstRTPJitterBuffer *buffer);
+ void (*clear_pt_map) (GstRtpJitterBuffer *buffer);
/*< private > */
gpointer _gst_reserved[GST_PADDING];