summaryrefslogtreecommitdiffstats
path: root/gst/level/gstlevel.h
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-08-10 10:54:02 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-08-10 10:54:02 +0000
commitbd57e8657c7c5c1bd7e0e61cd22d4237ca4a4c45 (patch)
tree08ce3d2398e3edd9d202d776d27918b754493943 /gst/level/gstlevel.h
parent1d185d4127c0b46c05ed8707413215569e60a602 (diff)
port fixes from 0.8 to level
Original commit message from CVS: port fixes from 0.8 to level
Diffstat (limited to 'gst/level/gstlevel.h')
-rw-r--r--gst/level/gstlevel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/level/gstlevel.h b/gst/level/gstlevel.h
index a7072386..40862c0b 100644
--- a/gst/level/gstlevel.h
+++ b/gst/level/gstlevel.h
@@ -61,7 +61,7 @@ struct _GstLevel {
gdouble decay_peak_ttl; /* time to live for peak in seconds */
gdouble decay_peak_falloff; /* falloff in dB/sec */
- gdouble num_samples; /* cumulative sample count */
+ gdouble num_samples; /* one-channel sample count since last emit */
/* per-channel arrays for intermediate values */
gdouble *CS; /* normalized Cumulative Square */
@@ -70,7 +70,7 @@ struct _GstLevel {
gdouble *decay_peak; /* running decaying normalized Peak */
gdouble *MS; /* normalized Mean Square of buffer */
gdouble *RMS_dB; /* RMS in dB to emit */
- gdouble *decay_peak_age; /* age of last peak */
+ gdouble *decay_peak_age; /* age of last peak in one-channel samples */
};
struct _GstLevelClass {