summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtph263ppay.h
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2005-09-15 13:57:56 +0000
committerWim Taymans <wim.taymans@gmail.com>2005-09-15 13:57:56 +0000
commitfc158bc3c2739eabfb092f7a45f6656ac8c96e25 (patch)
tree199f9ea3d2fddfcbc8315e95d6fe17c2e9936cd5 /gst/rtp/gstrtph263ppay.h
parentc7468729e9e05fa3cbcf6ee1fbbd578c516e2200 (diff)
Updates to payloader/depayloaders, make payloaders use the base classes.
Original commit message from CVS: Updates to payloader/depayloaders, make payloaders use the base classes. Updated README with suggested RTP caps and how to convert to/from SDP. Added config descriptor in mp4v payloader.
Diffstat (limited to 'gst/rtp/gstrtph263ppay.h')
-rw-r--r--gst/rtp/gstrtph263ppay.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/gst/rtp/gstrtph263ppay.h b/gst/rtp/gstrtph263ppay.h
index 316ae037..409e2ebd 100644
--- a/gst/rtp/gstrtph263ppay.h
+++ b/gst/rtp/gstrtph263ppay.h
@@ -21,6 +21,7 @@
#define __GST_RTP_H263P_ENC_H__
#include <gst/gst.h>
+#include <gst/rtp/gstbasertppayload.h>
#include <gst/base/gstadapter.h>
G_BEGIN_DECLS
@@ -41,24 +42,15 @@ typedef struct _GstRtpH263PEncClass GstRtpH263PEncClass;
struct _GstRtpH263PEnc
{
- GstElement element;
-
- GstPad *sinkpad;
- GstPad *srcpad;
+ GstBaseRTPPayload payload;
GstAdapter *adapter;
GstClockTime first_ts;
-
- guint16 seqnum;
- guint pt;
- guint ssrc;
-
- guint mtu;
};
struct _GstRtpH263PEncClass
{
- GstElementClass parent_class;
+ GstBaseRTPPayloadClass parent_class;
};
gboolean gst_rtph263penc_plugin_init (GstPlugin * plugin);