From 6e9d28eef6f6992d6c188c3f4591b2b367e47678 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 2 Apr 2012 11:05:38 +0200 Subject: [PATCH] rtp: fix initializer --- gst-libs/gst/rtp/gstrtpbuffer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/rtp/gstrtpbuffer.h b/gst-libs/gst/rtp/gstrtpbuffer.h index 67568fbb19..bc7dcdc3ac 100644 --- a/gst-libs/gst/rtp/gstrtpbuffer.h +++ b/gst-libs/gst/rtp/gstrtpbuffer.h @@ -57,8 +57,8 @@ struct _GstRTPBuffer GstMapInfo map[4]; }; -#define GST_RTP_BUFFER_INIT { NULL, { GST_MAP_INFO_INIT, GST_MAP_INFO_INIT, \ - GST_MAP_INFO_INIT, GST_MAP_INFO_INIT} } +#define GST_RTP_BUFFER_INIT { NULL, 0, 0, { GST_MAP_INFO_INIT, GST_MAP_INFO_INIT, \ + GST_MAP_INFO_INIT, GST_MAP_INFO_INIT} } /* creating buffers */ void gst_rtp_buffer_allocate_data (GstBuffer *buffer, guint payload_len,