summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpvorbisdepay.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/rtp/gstrtpvorbisdepay.h')
-rw-r--r--gst/rtp/gstrtpvorbisdepay.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/gst/rtp/gstrtpvorbisdepay.h b/gst/rtp/gstrtpvorbisdepay.h
index b95e9020..35f4d12d 100644
--- a/gst/rtp/gstrtpvorbisdepay.h
+++ b/gst/rtp/gstrtpvorbisdepay.h
@@ -40,12 +40,20 @@ G_BEGIN_DECLS
typedef struct _GstRtpVorbisDepay GstRtpVorbisDepay;
typedef struct _GstRtpVorbisDepayClass GstRtpVorbisDepayClass;
+typedef struct _GstRtpVorbisConfig {
+ guint32 ident;
+ GList *headers;
+} GstRtpVorbisConfig;
+
struct _GstRtpVorbisDepay
{
GstBaseRTPDepayload parent;
- GstAdapter *adapter;
- gboolean assembling;
+ GList *configs;
+ GstRtpVorbisConfig *config;
+
+ GstAdapter *adapter;
+ gboolean assembling;
};
struct _GstRtpVorbisDepayClass