Changeset 39

Show
Ignore:
Timestamp:
10/18/02 17:47:07 (6 years ago)
Author:
rossbencina
Message:

- added v19-devel status
- changed return value of Get*Available to signed long
- changed from paInputOverflow to paInputOverflowed
- changed from paOutputUnderflow to paOutputUnderflowed

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pa_proposals/trunk/005-BlockingReadWriteInterface.html

    r4 r39  
    1818<P><A href="index.html">Enhancement Proposals Index</A>, 
    1919<A href="http://www.portaudio.com/">PortAudio Home Page</A></P> 
    20 <P>Updated: July 23, 2002 </P> 
     20<P>Updated: October 19, 2002 </P> 
    2121 
    2222<H4>Status</H4> 
    2323 
    2424<P> 
    25 This proposal is sufficiently well defined to be implemented. 
     25This proposal is sufficiently well defined to be implemented. This proposal is implemented in the v19-devel infrastructure, but not yet in any of the host api implementations. 
    2626</P> 
    2727 
     
    7878 
    7979<P> 
    80 Pa_ReadStream() returns <I>paInputOverflow</I> if input data was discarded by PortAudio after the previous call and before this call. Pa_WriteStream() returns <I>paOutputUnderflow</I> if output data was inserted after the previous call and before this call. The mode flag <I>paNeverDropInput</I> is ignored because Pa_ReadStream() and Pa_WriteStream() are not synchronized. 
     80Pa_ReadStream() returns <I>paInputOverflowed</I> if input data was discarded by PortAudio after the previous call and before this call. Pa_WriteStream() returns <I>paOutputUnderflowed</I> if output data was inserted after the previous call and before this call. The mode flag <I>paNeverDropInput</I> is ignored because Pa_ReadStream() and Pa_WriteStream() are not synchronized. 
    8181</P> 
    8282 
     
    8686 
    8787<PRE> 
    88 long Pa_GetStreamWriteAvailable( PaStream* stream ); 
     88signed long Pa_GetStreamWriteAvailable( PaStream* stream ); 
    8989 
    90 long Pa_GetStreamReadAvailable( PaStream* stream ); 
     90signed long Pa_GetStreamReadAvailable( PaStream* stream ); 
    9191</PRE> 
    9292