summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpg729pay.h
diff options
context:
space:
mode:
authorOlivier Crete <tester@tester.ca>2008-11-11 17:29:03 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-11-11 17:29:03 +0000
commit774f238b96ab88540515ed9d88dc826ee7b558ca (patch)
treed73c1a3d92856704e1a9ee6b2052b49887b9fd15 /gst/rtp/gstrtpg729pay.h
parent21edbcc56697dc25ceea65ca8a101292823052f1 (diff)
gst/rtp/gstrtpg729pay.*: Replace G729 payloader with an improved version. Fixes #532409.
Original commit message from CVS: Patch by: Olivier Crete <tester at tester dot ca> * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_base_init), (gst_rtp_g729_pay_class_init), (gst_rtp_g729_pay_init), (gst_rtp_g729_pay_set_caps), (gst_rtp_g729_pay_handle_buffer): * gst/rtp/gstrtpg729pay.h: Replace G729 payloader with an improved version. Fixes #532409.
Diffstat (limited to 'gst/rtp/gstrtpg729pay.h')
-rw-r--r--gst/rtp/gstrtpg729pay.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/gst/rtp/gstrtpg729pay.h b/gst/rtp/gstrtpg729pay.h
index e6a7da75..ce0e1d6b 100644
--- a/gst/rtp/gstrtpg729pay.h
+++ b/gst/rtp/gstrtpg729pay.h
@@ -1,4 +1,6 @@
/* GStreamer
+ * Copyright (C) <2007> Nokia Corporation
+ * Copyright (C) <2007> Collabora Ltd
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -25,25 +27,25 @@
G_BEGIN_DECLS
#define GST_TYPE_RTP_G729_PAY \
- (gst_rtpg729pay_get_type())
+ (gst_rtp_g729_pay_get_type())
#define GST_RTP_G729_PAY(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_G729_PAY,GstRtpG729Pay))
+ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_G729_PAY,GstRTPG729Pay))
#define GST_RTP_G729_PAY_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_G729_PAY,GstRtpG729PayClass))
+ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_G729_PAY,GstRTPG729PayClass))
#define GST_IS_RTP_G729_PAY(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_G729_PAY))
#define GST_IS_RTP_G729_PAY_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_G729_PAY))
-typedef struct _GstRtpG729Pay GstRtpG729Pay;
-typedef struct _GstRtpG729PayClass GstRtpG729PayClass;
+typedef struct _GstRTPG729Pay GstRTPG729Pay;
+typedef struct _GstRTPG729PayClass GstRTPG729PayClass;
-struct _GstRtpG729Pay
+struct _GstRTPG729Pay
{
GstBaseRTPAudioPayload audiopayload;
};
-struct _GstRtpG729PayClass
+struct _GstRTPG729PayClass
{
GstBaseRTPAudioPayloadClass parent_class;
};