mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 11:51:34 +00:00
Fix the min value for the stats
Original commit message from CVS: Fix the min value for the stats
This commit is contained in:
parent
c6b9be0e52
commit
7fc83d1433
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
static guint64 iterations = 0;
|
static guint64 iterations = 0;
|
||||||
static guint64 sum = 0;
|
static guint64 sum = 0;
|
||||||
static guint64 min = G_MAXINT;
|
static guint64 min = G_MAXINT64;
|
||||||
static guint64 max = 0;
|
static guint64 max = 0;
|
||||||
static GstClock *s_clock;
|
static GstClock *s_clock;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue