And the .h file..

Original commit message from CVS:
And the .h file..
This commit is contained in:
Wim Taymans 2001-12-29 03:05:34 +00:00
parent 893c03f784
commit 7a4596415c
2 changed files with 12 additions and 10 deletions

View file

@ -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 */

View file

@ -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 */