diff options
author | Edgard Lima <edgard.lima@indt.org.br> | 2006-02-20 20:52:02 +0000 |
---|---|---|
committer | Edgard Lima <edgard.lima@indt.org.br> | 2006-02-20 20:52:02 +0000 |
commit | 961d07acb1fc0fd475d58d76bc641e8e7986987d (patch) | |
tree | fd9f6929f93492b17ab8bdfda883ca49aed5b125 /gst/freeze/gstfreeze.h | |
parent | 4de6fefd01e93f0b8834efb65173a8d66e26a09b (diff) | |
download | gst-plugins-bad-961d07acb1fc0fd475d58d76bc641e8e7986987d.tar.gz gst-plugins-bad-961d07acb1fc0fd475d58d76bc641e8e7986987d.tar.bz2 gst-plugins-bad-961d07acb1fc0fd475d58d76bc641e8e7986987d.zip |
I'm too lazy to comment this
Original commit message from CVS:
Some event handling added by Renato Filho <renato.filho@indt.org.br>
Diffstat (limited to 'gst/freeze/gstfreeze.h')
-rw-r--r-- | gst/freeze/gstfreeze.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gst/freeze/gstfreeze.h b/gst/freeze/gstfreeze.h index a20ca328..482a54b6 100644 --- a/gst/freeze/gstfreeze.h +++ b/gst/freeze/gstfreeze.h @@ -39,13 +39,15 @@ struct _GstFreeze GstPad *sinkpad, *srcpad; - GList *buffers; - GList *current; + GQueue *buffers; + GstBuffer *current; + guint max_buffers; gint64 timestamp_offset; gint64 offset; GstClockTime running_time; + gboolean on_flush; }; struct _GstFreezeClass |