mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
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:
parent
787b3fa7ec
commit
ab58a9af2f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue