summaryrefslogtreecommitdiffstats
path: root/gst/spectrum/gstspectrum.h
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2006-09-11 18:23:59 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2006-09-11 18:23:59 +0000
commit0ed39caa1aff5fbf96817ad0f9c959e7025ea792 (patch)
tree0beb6b45f1d3fb1cc6933b6c9bc4967f10cd08fe /gst/spectrum/gstspectrum.h
parent584c231629c30cb7318c0379de5ae8cfbcaa5635 (diff)
gst/spectrum/gstspectrum.*: Fix type mixup in spectrum->interval (gdouble<->guint64). Spotted by
Original commit message from CVS: * gst/spectrum/gstspectrum.c: (gst_spectrum_init), (gst_spectrum_set_property): * gst/spectrum/gstspectrum.h: Fix type mixup in spectrum->interval (gdouble<->guint64). Spotted by René Stadler
Diffstat (limited to 'gst/spectrum/gstspectrum.h')
-rw-r--r--gst/spectrum/gstspectrum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/spectrum/gstspectrum.h b/gst/spectrum/gstspectrum.h
index 0092f0ba..3bfdd489 100644
--- a/gst/spectrum/gstspectrum.h
+++ b/gst/spectrum/gstspectrum.h
@@ -48,7 +48,7 @@ struct _GstSpectrum {
/* properties */
gboolean message; /* whether or not to post messages */
- gdouble interval; /* how many seconds between emits */
+ guint64 interval; /* how many seconds between emits */
guint bands; /* number of spectrum bands */
gint threshold; /* energy level treshold */