mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
buffer pool: put GstBufferPoolAcquireParams typedef before struct
Works around https://bugzilla.gnome.org/show_bug.cgi?id=581525
This commit is contained in:
parent
5e84524d72
commit
d5c54b07fc
1 changed files with 4 additions and 2 deletions
|
@ -60,6 +60,8 @@ typedef enum {
|
|||
GST_BUFFER_POOL_ACQUIRE_FLAG_LAST = (1 << 16),
|
||||
} GstBufferPoolAcquireFlags;
|
||||
|
||||
typedef struct _GstBufferPoolAcquireParams GstBufferPoolAcquireParams;
|
||||
|
||||
/**
|
||||
* GstBufferPoolAcquireParams:
|
||||
* @format: the format of @start and @stop
|
||||
|
@ -74,7 +76,7 @@ typedef enum {
|
|||
* implementations can use this extra information to decide what buffer to
|
||||
* return.
|
||||
*/
|
||||
typedef struct _GstBufferPoolAcquireParams {
|
||||
struct _GstBufferPoolAcquireParams {
|
||||
GstFormat format;
|
||||
gint64 start;
|
||||
gint64 stop;
|
||||
|
@ -82,7 +84,7 @@ typedef struct _GstBufferPoolAcquireParams {
|
|||
|
||||
/*< private >*/
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
} GstBufferPoolAcquireParams;
|
||||
};
|
||||
|
||||
/**
|
||||
* GST_BUFFER_POOL_IS_FLUSHING:
|
||||
|
|
Loading…
Reference in a new issue