From ab58a9af2f4c2570708c5620408409de02e391c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 15 Sep 2014 21:51:15 +0100 Subject: [PATCH] appsrc: fix recent ABI breakage caused by GstAppSrc structure size increase Also fixes 'make check'. https://bugzilla.gnome.org/show_bug.cgi?id=728379 --- gst-libs/gst/app/gstappsrc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/app/gstappsrc.h b/gst-libs/gst/app/gstappsrc.h index f793ce67bc..b7f6be849f 100644 --- a/gst-libs/gst/app/gstappsrc.h +++ b/gst-libs/gst/app/gstappsrc.h @@ -110,7 +110,7 @@ struct _GstAppSrcClass GstFlowReturn (*push_sample) (GstAppSrc *appsrc, GstSample *sample); /*< private >*/ - gpointer _gst_reserved[GST_PADDING]; + gpointer _gst_reserved[GST_PADDING-1]; }; GType gst_app_src_get_type(void);