roar_vs_sync(3) | RoarAudio Programmer's Manual | roar_vs_sync(3) |
roar_vs_sync - Sync VS object with server
#include <roaraudio.h>
int roar_vs_sync (roar_vs_t * vss, int wait, int * error);
This function syncs the local data buffers with the server by flushing them. The parameter wait is used to tell the function if it should also wait for the flushed data to be played (sometimes called drain by other sound systems). This mode is not recommended expect at end of stream as it will result in buffer underruns.
This function does only flush IO buffers not the ring buffers in buffered mode. Use roar_vs_iterate(3) or roar_vs_run(3) to do this.
On success these calls return 0. On error, -1 is returned.
This function uses the WAIT protocol command if wait is set to ROAR_VS_WAIT. This is not supported by all servers.
FIXME
May 2011 | RoarAudio |