From 242e077e46f2b2c43d5fb642fd974a223b9add63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 2 Apr 2011 14:18:57 +0100 Subject: [PATCH] baseparse: add some padding to GstBaseParseFrame Esp. since it's usually allocated on the stack. https://bugzilla.gnome.org/show_bug.cgi?id=518857 --- libs/gst/base/gstbaseparse.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/gst/base/gstbaseparse.h b/libs/gst/base/gstbaseparse.h index 6ed4f54f30..38aa392fe4 100644 --- a/libs/gst/base/gstbaseparse.h +++ b/libs/gst/base/gstbaseparse.h @@ -126,6 +126,9 @@ typedef struct { GstBuffer * buffer; guint flags; gint overhead; + /*< private >*/ + gint _gst_reserved_i[2]; + gpointer _gst_reserved_p[2]; } GstBaseParseFrame; /**