From: rbencina Date: Mon, 2 Apr 2012 07:20:04 +0000 (+0000) Subject: fixed typo in comment. added whitespace. X-Git-Tag: pa_stable_v19_20140130_r1919~77 X-Git-Url: https://andrewgundersen.net/repos?a=commitdiff_plain;h=21f039bd090095a630a176569a029878436f8510;p=portaudio fixed typo in comment. added whitespace. --- diff --git a/src/hostapi/asio/pa_asio.cpp b/src/hostapi/asio/pa_asio.cpp index 5735e16..72e8d1b 100644 --- a/src/hostapi/asio/pa_asio.cpp +++ b/src/hostapi/asio/pa_asio.cpp @@ -3051,7 +3051,7 @@ previousIndex = index; paTimeInfo.outputBufferDacTime = paTimeInfo.currentTime + theAsioStream->streamRepresentation.streamInfo.outputLatency; */ -/* Disabled! Stopping and re-starting the stream causes an input overflow / output undeflow. S.Fischer */ +/* Disabled! Stopping and re-starting the stream causes an input overflow / output underflow. S.Fischer */ #if 0 // detect underflows by checking inter-callback time > 2 buffer period static double previousTime = -1; @@ -3503,6 +3503,7 @@ static PaError IsStreamActive( PaStream *s ) static PaTime GetStreamTime( PaStream *s ) { (void) s; /* unused parameter */ + return (double)timeGetTime() * .001; }