summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpL16depay.h
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-12-01 14:39:30 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-12-01 14:39:30 +0000
commitfe967d4fe869959df133e4d1b5d304ed60a2fd41 (patch)
treec99f63c8b69ee293c0638c7df6cc7abc26340622 /gst/rtp/gstrtpL16depay.h
parent7a4f8655ce2679dc535d6698630dbc087dc1ce87 (diff)
gst/rtp/: parsers are depayers
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtpL16depay.c: * gst/rtp/gstrtpL16depay.h: * gst/rtp/gstrtpL16parse.c: * gst/rtp/gstrtpL16parse.h: * gst/rtp/gstrtpgsmdepay.c: * gst/rtp/gstrtpgsmdepay.h: * gst/rtp/gstrtpgsmparse.c: * gst/rtp/gstrtpgsmparse.h: parsers are depayers
Diffstat (limited to 'gst/rtp/gstrtpL16depay.h')
-rw-r--r--gst/rtp/gstrtpL16depay.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/gst/rtp/gstrtpL16depay.h b/gst/rtp/gstrtpL16depay.h
index 04cc3a80..940cca61 100644
--- a/gst/rtp/gstrtpL16depay.h
+++ b/gst/rtp/gstrtpL16depay.h
@@ -17,8 +17,8 @@
* Boston, MA 02111-1307, USA.
*/
-#ifndef __GST_RTP_L16_PARSE_H__
-#define __GST_RTP_L16_PARSE_H__
+#ifndef __GST_RTP_L16_DEPAY_H__
+#define __GST_RTP_L16_DEPAY_H__
#include <gst/gst.h>
#include "rtp-packet.h"
@@ -30,8 +30,8 @@ extern "C"
#endif /* __cplusplus */
/* Definition of structure storing data for this element. */
-typedef struct _GstRtpL16Parse GstRtpL16Parse;
-struct _GstRtpL16Parse
+typedef struct _GstRtpL16Depay GstRtpL16Depay;
+struct _GstRtpL16Depay
{
GstElement element;
@@ -45,29 +45,29 @@ struct _GstRtpL16Parse
};
/* Standard definition defining a class for this element. */
-typedef struct _GstRtpL16ParseClass GstRtpL16ParseClass;
-struct _GstRtpL16ParseClass
+typedef struct _GstRtpL16DepayClass GstRtpL16DepayClass;
+struct _GstRtpL16DepayClass
{
GstElementClass parent_class;
};
/* Standard macros for defining types for this element. */
-#define GST_TYPE_RTP_L16_PARSE \
- (gst_rtp_L16parse_get_type())
-#define GST_RTP_L16_PARSE(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_L16_PARSE,GstRtpL16Parse))
-#define GST_RTP_L16_PARSE_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_L16_PARSE,GstRtpL16Parse))
-#define GST_IS_RTP_L16_PARSE(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_L16_PARSE))
-#define GST_IS_RTP_L16_PARSE_CLASS(obj) \
- (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_L16_PARSE))
+#define GST_TYPE_RTP_L16_DEPAY \
+ (gst_rtp_L16depay_get_type())
+#define GST_RTP_L16_DEPAY(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_L16_DEPAY,GstRtpL16Depay))
+#define GST_RTP_L16_DEPAY_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_L16_DEPAY,GstRtpL16Depay))
+#define GST_IS_RTP_L16_DEPAY(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_L16_DEPAY))
+#define GST_IS_RTP_L16_DEPAY_CLASS(obj) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_L16_DEPAY))
-gboolean gst_rtp_L16parse_plugin_init (GstPlugin * plugin);
+gboolean gst_rtp_L16depay_plugin_init (GstPlugin * plugin);
#ifdef __cplusplus
}
#endif /* __cplusplus */
-#endif /* __GST_RTP_L16_PARSE_H__ */
+#endif /* __GST_RTP_L16_DEPAY_H__ */