mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
gst_private.h: increse padding in struct _GstClockEntryImpl
When compiling for 32bit architectures with 64bit time_t e.g. riscv32, 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 8 bytes (on 32bit). Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/694>
This commit is contained in:
parent
e74040b41e
commit
96ac9abb23
1 changed files with 1 additions and 1 deletions
|
@ -523,7 +523,7 @@ struct _GstClockEntryImpl
|
|||
GstClockEntry entry;
|
||||
GWeakRef clock;
|
||||
GDestroyNotify destroy_entry;
|
||||
gpointer padding[19]; /* padding for allowing e.g. systemclock
|
||||
gpointer padding[21]; /* padding for allowing e.g. systemclock
|
||||
* to add data in lieu of overridable
|
||||
* virtual functions on the clock */
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue