HydrogenAudio

Hosted Forums => foobar2000 => Development - (fb2k) => Topic started by: LoonixTarballs on 2018-07-29 02:57:46

Title: TCP output component
Post by: LoonixTarballs on 2018-07-29 02:57:46
Hi.

I'm writing an output component that sends the audio data through a TCP socket to a server of mine that outputs it on the local audio hardware. The code works perfectly when the server is on localhost or another machine that's reachable via copper. However, as soon as WiFi is involved I immediately get underflow, although only with some tracks. Looking at a trace, I can see that Foobar2000 is often calling get_latency() and update() as many as two times each for every ~3 ms of audio it sends through (which is quite bad with a 1-4 ms ping), even though get_latency() is begging for data and update() reports that it really can handle more.
What's even more frustrating is that a) for some tracks it magically works fine, and b) if I just don't bother with either get_latency() or update() and make them return 0 and true respectively always, and let the TCP stacks handle the waiting, everything works fine other than the GUI and the audio going completely out of sync.

So I guess my question would be, what is Foobar2000 doing, and is there any way to make it stop?

Thanks.