mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
And the .h file..
Original commit message from CVS: And the .h file..
This commit is contained in:
parent
893c03f784
commit
7a4596415c
2 changed files with 12 additions and 10 deletions
|
@ -63,14 +63,15 @@ struct _GstQueue {
|
|||
GstPad *srcpad;
|
||||
|
||||
/* the queue of buffers we're keeping our grubby hands on */
|
||||
GSList *queue;
|
||||
GList *queue;
|
||||
gint count;
|
||||
|
||||
gint level_buffers; /* number of buffers queued here */
|
||||
gint level_bytes; /* number of bytes queued here */
|
||||
guint level_buffers; /* number of buffers queued here */
|
||||
guint level_bytes; /* number of bytes queued here */
|
||||
guint64 level_time; /* amount of time queued here */
|
||||
|
||||
gint size_buffers; /* size of queue in buffers */
|
||||
gint size_bytes; /* size of queue in bytes */
|
||||
guint size_buffers; /* size of queue in buffers */
|
||||
guint size_bytes; /* size of queue in bytes */
|
||||
guint64 size_time; /* size of queue in time */
|
||||
|
||||
gint leaky; /* whether the queue is leaky, and if so at which end */
|
||||
|
|
|
@ -63,14 +63,15 @@ struct _GstQueue {
|
|||
GstPad *srcpad;
|
||||
|
||||
/* the queue of buffers we're keeping our grubby hands on */
|
||||
GSList *queue;
|
||||
GList *queue;
|
||||
gint count;
|
||||
|
||||
gint level_buffers; /* number of buffers queued here */
|
||||
gint level_bytes; /* number of bytes queued here */
|
||||
guint level_buffers; /* number of buffers queued here */
|
||||
guint level_bytes; /* number of bytes queued here */
|
||||
guint64 level_time; /* amount of time queued here */
|
||||
|
||||
gint size_buffers; /* size of queue in buffers */
|
||||
gint size_bytes; /* size of queue in bytes */
|
||||
guint size_buffers; /* size of queue in buffers */
|
||||
guint size_bytes; /* size of queue in bytes */
|
||||
guint64 size_time; /* size of queue in time */
|
||||
|
||||
gint leaky; /* whether the queue is leaky, and if so at which end */
|
||||
|
|
Loading…
Reference in a new issue