diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-08-23 21:39:58 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-08-23 21:39:58 +0000 |
commit | 3adc3a9878907809da7dfb47bfc3de2645c35b61 (patch) | |
tree | 2d232a0bbeac0f241176a1f7a92fd22aed1df497 /gst/rtpmanager/gstrtpssrcdemux.h | |
parent | dcc4837a237abb01919b3fa837d14a1b03bcc4ce (diff) | |
download | gst-plugins-bad-3adc3a9878907809da7dfb47bfc3de2645c35b61.tar.gz gst-plugins-bad-3adc3a9878907809da7dfb47bfc3de2645c35b61.tar.bz2 gst-plugins-bad-3adc3a9878907809da7dfb47bfc3de2645c35b61.zip |
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/gstrtpssrcdemux.h')
-rw-r--r-- | gst/rtpmanager/gstrtpssrcdemux.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gst/rtpmanager/gstrtpssrcdemux.h b/gst/rtpmanager/gstrtpssrcdemux.h index 475d2f54..5d93330d 100644 --- a/gst/rtpmanager/gstrtpssrcdemux.h +++ b/gst/rtpmanager/gstrtpssrcdemux.h @@ -23,16 +23,16 @@ #include <gst/gst.h> #define GST_TYPE_RTP_SSRC_DEMUX (gst_rtp_ssrc_demux_get_type()) -#define GST_RTP_SSRC_DEMUX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_SSRC_DEMUX,GstRTPSsrcDemux)) -#define GST_RTP_SSRC_DEMUX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_SSRC_DEMUX,GstRTPSsrcDemuxClass)) +#define GST_RTP_SSRC_DEMUX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_SSRC_DEMUX,GstRtpSsrcDemux)) +#define GST_RTP_SSRC_DEMUX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_SSRC_DEMUX,GstRtpSsrcDemuxClass)) #define GST_IS_RTP_SSRC_DEMUX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_SSRC_DEMUX)) #define GST_IS_RTP_SSRC_DEMUX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_SSRC_DEMUX)) -typedef struct _GstRTPSsrcDemux GstRTPSsrcDemux; -typedef struct _GstRTPSsrcDemuxClass GstRTPSsrcDemuxClass; -typedef struct _GstRTPSsrcDemuxPad GstRTPSsrcDemuxPad; +typedef struct _GstRtpSsrcDemux GstRtpSsrcDemux; +typedef struct _GstRtpSsrcDemuxClass GstRtpSsrcDemuxClass; +typedef struct _GstRtpSsrcDemuxPad GstRtpSsrcDemuxPad; -struct _GstRTPSsrcDemux +struct _GstRtpSsrcDemux { GstElement parent; @@ -40,7 +40,7 @@ struct _GstRTPSsrcDemux GSList *rtp_srcpads; }; -struct _GstRTPSsrcDemuxClass +struct _GstRtpSsrcDemuxClass { GstElementClass parent_class; |