mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
raw1394, matroska, rtpmanager: remove padding from structures
None of these element and class structures are in public headers, so don't need padding.
This commit is contained in:
parent
de6483c9f6
commit
63c86ac3d8
3 changed files with 1 additions and 15 deletions
|
@ -65,9 +65,6 @@ struct _Gst1394Clock {
|
|||
|
||||
struct _Gst1394ClockClass {
|
||||
GstSystemClockClass parent_class;
|
||||
|
||||
/*< private >*/
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
GType gst_1394_clock_get_type (void);
|
||||
|
|
|
@ -55,16 +55,10 @@ typedef struct _GstEbmlWrite {
|
|||
GstFlowReturn last_write_result;
|
||||
|
||||
gboolean need_newsegment;
|
||||
|
||||
/*< private >*/
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
} GstEbmlWrite;
|
||||
|
||||
typedef struct _GstEbmlWriteClass {
|
||||
GstObjectClass parent;
|
||||
|
||||
/*< private >*/
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
} GstEbmlWriteClass;
|
||||
|
||||
GType gst_ebml_write_get_type (void);
|
||||
|
|
|
@ -59,9 +59,7 @@ struct _GstRtpJitterBuffer
|
|||
GstElement parent;
|
||||
|
||||
/*< private >*/
|
||||
GstRtpJitterBufferPrivate *priv;
|
||||
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
GstRtpJitterBufferPrivate *priv; /* FIXME: remove? */
|
||||
};
|
||||
|
||||
struct _GstRtpJitterBufferClass
|
||||
|
@ -78,9 +76,6 @@ struct _GstRtpJitterBufferClass
|
|||
void (*clear_pt_map) (GstRtpJitterBuffer *buffer);
|
||||
|
||||
GstClockTime (*set_active) (GstRtpJitterBuffer *buffer, gboolean active, guint64 elapsed);
|
||||
|
||||
/*< private > */
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
GType gst_rtp_jitter_buffer_get_type (void);
|
||||
|
|
Loading…
Reference in a new issue