summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtph263pdepay.h
diff options
context:
space:
mode:
authorPhilippe Kalaf <philippe.kalaf@collabora.co.uk>2005-12-22 15:00:41 +0000
committerPhilippe Kalaf <philippe.kalaf@collabora.co.uk>2005-12-22 15:00:41 +0000
commit0c2414650ac588b947dd9761394fdd28b65c3be2 (patch)
tree9fdf7393324eff0397e56ccde1a1374a95d41d97 /gst/rtp/gstrtph263pdepay.h
parentdccf2f0ef9bf8d31ef9a6c329f06956cc984bfc1 (diff)
gst-plugins-good/gst/rtp/: Making these depayloaders (H263+ and mpeg4 video) inherit from
Original commit message from CVS: 2005-12-22 Philippe Khalaf <burger@speedy.org> * gst-plugins-good/gst/rtp/gstrtph263pdepay.h: * gst-plugins-good/gst/rtp/gstrtph263pdepay.c: * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.h: * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c: Making these depayloaders (H263+ and mpeg4 video) inherit from RtpBaseDepayloaderClass. Fixes bugs #323922 and #323908.
Diffstat (limited to 'gst/rtp/gstrtph263pdepay.h')
-rw-r--r--gst/rtp/gstrtph263pdepay.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/gst/rtp/gstrtph263pdepay.h b/gst/rtp/gstrtph263pdepay.h
index 942c98b8..be8bdd79 100644
--- a/gst/rtp/gstrtph263pdepay.h
+++ b/gst/rtp/gstrtph263pdepay.h
@@ -22,6 +22,7 @@
#include <gst/gst.h>
#include <gst/base/gstadapter.h>
+#include <gst/rtp/gstbasertpdepayload.h>
G_BEGIN_DECLS
@@ -41,10 +42,7 @@ typedef struct _GstRtpH263PDepayClass GstRtpH263PDepayClass;
struct _GstRtpH263PDepay
{
- GstElement element;
-
- GstPad *sinkpad;
- GstPad *srcpad;
+ GstBaseRTPDepayload depayload;
GstAdapter *adapter;
@@ -53,7 +51,7 @@ struct _GstRtpH263PDepay
struct _GstRtpH263PDepayClass
{
- GstElementClass parent_class;
+ GstBaseRTPDepayloadClass parent_class;
};
gboolean gst_rtp_h263p_depay_plugin_init (GstPlugin * plugin);