summaryrefslogtreecommitdiffstats
path: root/gst/spectrum/gstspectrum.h
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2009-01-14 15:44:18 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2009-01-14 15:44:18 +0000
commitf4b2d38c87331798d59296af2d4c6edeff047e66 (patch)
treefe66a073530b041740c78b0adee2a00fcd76e411 /gst/spectrum/gstspectrum.h
parentb1c6dec543d6445151631ea13825820f2ad3914d (diff)
gst/spectrum/gstspectrum.*: Use correct types for frame/fft counters and some minor cleanup.
Original commit message from CVS: * gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip): * gst/spectrum/gstspectrum.h: Use correct types for frame/fft counters and some minor cleanup.
Diffstat (limited to 'gst/spectrum/gstspectrum.h')
-rw-r--r--gst/spectrum/gstspectrum.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/spectrum/gstspectrum.h b/gst/spectrum/gstspectrum.h
index 8c5e533c..cd42360f 100644
--- a/gst/spectrum/gstspectrum.h
+++ b/gst/spectrum/gstspectrum.h
@@ -49,9 +49,9 @@ struct _GstSpectrum
guint bands; /* number of spectrum bands */
gint threshold; /* energy level treshold */
- guint num_frames; /* frame count (1 sample per channel)
+ guint64 num_frames; /* frame count (1 sample per channel)
* since last emit */
- guint num_fft; /* number of FFTs since last emit */
+ guint64 num_fft; /* number of FFTs since last emit */
GstClockTime message_ts; /* starttime for next message */
/* <private> */