Stefan Schoenleitner wrote:
I have some code that basically captures audio frames from one device and then writes it for playback to another device.
How do you synchronize the clocks of both devices?
Ideally mmapped IO could be used for such a task,
Why would mmap be more ideal?
My idea would be to just increment avail_min to something bigger, so that more frames are being buffered before playback starts. Would this work ?
Yes; to avoid underruns, try to have buffer as full as possible, and try to use a bigger buffer. However, this will increase latency.
To avoid overruns in the capture device, use a bigger buffer, which will _not_ increase latency.
- Another idea would be to do some buffering on my own in the application.
This is bascially the same as the first idea, except that you have to manage this buffer yourself. This might be worthwile if the devices do not have big enough buffers.
Regards, Clemens