mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
queue2: remove unused variable
buffering_iteration was never used
This commit is contained in:
parent
3ed2507ebc
commit
dc8f0932fe
2 changed files with 0 additions and 2 deletions
|
@ -894,7 +894,6 @@ update_buffering (GstQueue2 * queue)
|
||||||
* below the low threshold */
|
* below the low threshold */
|
||||||
if (percent < queue->low_percent) {
|
if (percent < queue->low_percent) {
|
||||||
queue->is_buffering = TRUE;
|
queue->is_buffering = TRUE;
|
||||||
queue->buffering_iteration++;
|
|
||||||
post = TRUE;
|
post = TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -111,7 +111,6 @@ struct _GstQueue2
|
||||||
/* current buffering state */
|
/* current buffering state */
|
||||||
gboolean is_buffering;
|
gboolean is_buffering;
|
||||||
gint buffering_percent;
|
gint buffering_percent;
|
||||||
guint buffering_iteration;
|
|
||||||
|
|
||||||
/* for measuring input/output rates */
|
/* for measuring input/output rates */
|
||||||
GTimer *in_timer;
|
GTimer *in_timer;
|
||||||
|
|
Loading…
Reference in a new issue