mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-02 10:13:51 +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;
|
GstPad *srcpad;
|
||||||
|
|
||||||
/* the queue of buffers we're keeping our grubby hands on */
|
/* 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 */
|
guint level_buffers; /* number of buffers queued here */
|
||||||
gint level_bytes; /* number of bytes queued here */
|
guint level_bytes; /* number of bytes queued here */
|
||||||
guint64 level_time; /* amount of time queued here */
|
guint64 level_time; /* amount of time queued here */
|
||||||
|
|
||||||
gint size_buffers; /* size of queue in buffers */
|
guint size_buffers; /* size of queue in buffers */
|
||||||
gint size_bytes; /* size of queue in bytes */
|
guint size_bytes; /* size of queue in bytes */
|
||||||
guint64 size_time; /* size of queue in time */
|
guint64 size_time; /* size of queue in time */
|
||||||
|
|
||||||
gint leaky; /* whether the queue is leaky, and if so at which end */
|
gint leaky; /* whether the queue is leaky, and if so at which end */
|
||||||
|
|
|
@ -63,14 +63,15 @@ struct _GstQueue {
|
||||||
GstPad *srcpad;
|
GstPad *srcpad;
|
||||||
|
|
||||||
/* the queue of buffers we're keeping our grubby hands on */
|
/* 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 */
|
guint level_buffers; /* number of buffers queued here */
|
||||||
gint level_bytes; /* number of bytes queued here */
|
guint level_bytes; /* number of bytes queued here */
|
||||||
guint64 level_time; /* amount of time queued here */
|
guint64 level_time; /* amount of time queued here */
|
||||||
|
|
||||||
gint size_buffers; /* size of queue in buffers */
|
guint size_buffers; /* size of queue in buffers */
|
||||||
gint size_bytes; /* size of queue in bytes */
|
guint size_bytes; /* size of queue in bytes */
|
||||||
guint64 size_time; /* size of queue in time */
|
guint64 size_time; /* size of queue in time */
|
||||||
|
|
||||||
gint leaky; /* whether the queue is leaky, and if so at which end */
|
gint leaky; /* whether the queue is leaky, and if so at which end */
|
||||||
|
|
Loading…
Reference in a new issue