summaryrefslogtreecommitdiffstats
path: root/libaf/af.h
diff options
context:
space:
mode:
Diffstat (limited to 'libaf/af.h')
-rw-r--r--libaf/af.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libaf/af.h b/libaf/af.h
index 4c983cb6e4..a4dc6f9535 100644
--- a/libaf/af.h
+++ b/libaf/af.h
@@ -54,7 +54,8 @@ typedef struct af_instance_s
af_data_t* data; // configuration for outgoing data stream
struct af_instance_s* next;
struct af_instance_s* prev;
- double delay; // Delay caused by the filter [ms]
+ double delay; /* Delay caused by the filter, in units of bytes read without
+ * corresponding output */
double mul; /* length multiplier: how much does this instance change
the length of the buffer. */
}af_instance_t;
@@ -196,7 +197,7 @@ double af_calc_filter_multiplier(af_stream_t* s);
/**
* \brief Calculate the total delay caused by the filters
- * \return delay in seconds
+ * \return delay in bytes of "missing" output
*/
double af_calc_delay(af_stream_t* s);