summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpmp2tdepay.h
diff options
context:
space:
mode:
authorThijs Vermeir <thijsvermeir@gmail.com>2007-03-02 12:16:16 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-03-02 12:16:16 +0000
commitfe901ccec7afe6870c3973f0fcad82439699260b (patch)
tree5a69ad36a4f79a85db3369b012b7dba208be50af /gst/rtp/gstrtpmp2tdepay.h
parent56004b0df681acafb61124b921fb14fb0ad356d8 (diff)
gst/rtp/gstrtpmp2tdepay.*: Add support to strip off proprietary headers. Fixes #350278.
Original commit message from CVS: Patch by: Thijs Vermeir <thijsvermeir at gmail dot com> * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_process), (gst_rtp_mp2t_depay_set_property), (gst_rtp_mp2t_depay_get_property): * gst/rtp/gstrtpmp2tdepay.h: Add support to strip off proprietary headers. Fixes #350278.
Diffstat (limited to 'gst/rtp/gstrtpmp2tdepay.h')
-rw-r--r--gst/rtp/gstrtpmp2tdepay.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/rtp/gstrtpmp2tdepay.h b/gst/rtp/gstrtpmp2tdepay.h
index 9d9e8551..e3f6c53d 100644
--- a/gst/rtp/gstrtpmp2tdepay.h
+++ b/gst/rtp/gstrtpmp2tdepay.h
@@ -36,13 +36,14 @@ G_BEGIN_DECLS
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_MP2T_DEPAY))
#define GST_IS_RTP_MP2T_DEPAY_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_MP2T_DEPAY))
-
typedef struct _GstRtpMP2TDepay GstRtpMP2TDepay;
typedef struct _GstRtpMP2TDepayClass GstRtpMP2TDepayClass;
struct _GstRtpMP2TDepay
{
GstBaseRTPDepayload depayload;
+
+ guint8 skip_first_bytes;
};
struct _GstRtpMP2TDepayClass