diff options
Diffstat (limited to 'gst/rtp/gstrtpmpapay.h')
-rw-r--r-- | gst/rtp/gstrtpmpapay.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/gst/rtp/gstrtpmpapay.h b/gst/rtp/gstrtpmpapay.h index c4eac61f..9ab51240 100644 --- a/gst/rtp/gstrtpmpapay.h +++ b/gst/rtp/gstrtpmpapay.h @@ -17,8 +17,8 @@ * Boston, MA 02111-1307, USA. */ -#ifndef __GST_RTP_MPA_ENC_H__ -#define __GST_RTP_MPA_ENC_H__ +#ifndef __GST_RTP_MPA_PAY_H__ +#define __GST_RTP_MPA_PAY_H__ #include <gst/gst.h> #include <gst/rtp/gstbasertppayload.h> @@ -26,21 +26,21 @@ G_BEGIN_DECLS -#define GST_TYPE_RTP_MPA_ENC \ - (gst_rtpmpaenc_get_type()) -#define GST_RTP_MPA_ENC(obj) \ - (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_MPA_ENC,GstRtpMPAEnc)) -#define GST_RTP_MPA_ENC_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_MPA_ENC,GstRtpMPAEnc)) -#define GST_IS_RTP_MPA_ENC(obj) \ - (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_MPA_ENC)) -#define GST_IS_RTP_MPA_ENC_CLASS(obj) \ - (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_MPA_ENC)) - -typedef struct _GstRtpMPAEnc GstRtpMPAEnc; -typedef struct _GstRtpMPAEncClass GstRtpMPAEncClass; - -struct _GstRtpMPAEnc +#define GST_TYPE_RTP_MPA_PAY \ + (gst_rtp_mpa_pay_get_type()) +#define GST_RTP_MPA_PAY(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_MPA_PAY,GstRtpMPAPay)) +#define GST_RTP_MPA_PAY_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_MPA_PAY,GstRtpMPAPay)) +#define GST_IS_RTP_MPA_PAY(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_MPA_PAY)) +#define GST_IS_RTP_MPA_PAY_CLASS(obj) \ + (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_MPA_PAY)) + +typedef struct _GstRtpMPAPay GstRtpMPAPay; +typedef struct _GstRtpMPAPayClass GstRtpMPAPayClass; + +struct _GstRtpMPAPay { GstBaseRTPPayload payload; @@ -49,13 +49,13 @@ struct _GstRtpMPAEnc GstClockTime duration; }; -struct _GstRtpMPAEncClass +struct _GstRtpMPAPayClass { GstBaseRTPPayloadClass parent_class; }; -gboolean gst_rtpmpaenc_plugin_init (GstPlugin * plugin); +gboolean gst_rtp_mpa_pay_plugin_init (GstPlugin * plugin); G_END_DECLS -#endif /* __GST_RTP_MPA_ENC_H__ */ +#endif /* __GST_RTP_MPA_PAY_H__ */ |