Browse Source

More documentation in jack.h

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2115 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.71
sletz 17 years ago
parent
commit
3d97601d30
1 changed files with 6 additions and 3 deletions
  1. +6
    -3
      common/jack/jack.h

+ 6
- 3
common/jack/jack.h View File

@@ -189,7 +189,7 @@ extern "C"
* \bold THIS FUNCTION IS DEPRECATED AND SHOULD NOT BE USED IN
* NEW JACK CLIENTS.
*
* It should be replace by use of @ jack_thread_wait and @ jack_cycle_wait functions.
* It should be replace by use of @ jack_cycle_wait and @ jack_cycle_signal functions.
*
*/
jack_nframes_t jack_thread_wait (jack_client_t*, int status);
@@ -469,13 +469,16 @@ extern "C"
* zero-filled. if there are multiple inbound connections, the data
* will be mixed appropriately.
*
* FOR OUTPUT PORTS ONLY
* ---------------------
* FOR OUTPUT PORTS ONLY : DEPRECATED in Jack 2.0 !!
* ---------------------------------------------------
* You may cache the value returned, but only between calls to
* your "blocksize" callback. For this reason alone, you should
* either never cache the return value or ensure you have
* a "blocksize" callback and be sure to invalidate the cached
* address from there.
*
* Caching output ports is DEPRECATED in Jack 2.0, due to some new optimization (like "pipelining").
* Port buffers have to be retrieved in each callback for proper functionning.
*/
void * jack_port_get_buffer (jack_port_t *, jack_nframes_t);



Loading…
Cancel
Save