appsrc: fix recent ABI breakage caused by GstAppSrc structure size increase

Also fixes 'make check'.

https://bugzilla.gnome.org/show_bug.cgi?id=728379
This commit is contained in:
Tim-Philipp Müller 2014-09-15 21:51:15 +01:00
parent 787b3fa7ec
commit ab58a9af2f

View file

@ -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);