Fix erroneous getStreamTime() results in some cases.
[rtaudio-cdist.git] / RtAudio.h
index 4bb75545a29dcd7a72602f3f634ff03618c97654..d4f9f38168c48f9317d824a2b55272fb1885f0dd 100644 (file)
--- a/RtAudio.h
+++ b/RtAudio.h
@@ -796,6 +796,9 @@ protected:
     double streamTime;         // Number of elapsed seconds since the stream started.
 
 #if defined(HAVE_GETTIMEOFDAY)
+    // The gettimeofday() when tickStreamTime was last called, or both
+    // fields at 0 if tickStreamTime has not been called since the last
+    // startStream().
     struct timeval lastTickTimestamp;
 #endif