From 0b0a120a3711202334bcf6e35e849e529e832465 Mon Sep 17 00:00:00 2001 From: Havard Graff Date: Mon, 8 Jun 2020 22:47:56 +0200 Subject: [PATCH] gst_private.h: increse padding in struct _GstClockEntryImpl When compiling for 32bit ios arm, the static assert that the GstClockEntryImpl smaller or equal to the struct _GstClockEntryImpl triggered. (they were 12bytes off). To fix this, the padding is increased by 12 bytes (on 32bit). Part-of: --- gst/gst_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gst_private.h b/gst/gst_private.h index 8eb28cf..1b0f02b 100644 --- a/gst/gst_private.h +++ b/gst/gst_private.h @@ -524,7 +524,7 @@ struct _GstClockEntryImpl GstClockEntry entry; GWeakRef clock; GDestroyNotify destroy_entry; - gpointer padding[16]; /* padding for allowing e.g. systemclock + gpointer padding[19]; /* padding for allowing e.g. systemclock * to add data in lieu of overridable * virtual functions on the clock */ }; -- 2.7.4