-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for S24_3LE format #94
Comments
Is there another open source application on Linux that can open the device in raw mode with 96000 and it works? If so, we can cross reference the source code and see if we can spot a difference. |
First I'm going to see if this happens in C as well. I was using Terra, and when I open in 16/48 I get a (lib)pthread segfault. |
Okay, this segfaults on me after printing
I put this code in place of example/sio_list_devices.c because CMake builds it for me. How do you suggest I debug? Oh, and:
|
I'm installing a couple things to try. |
Couple things in your example code:
for (;;)
soundio_wait_events(soundio); Simple way to make your program block so that the audio loop can run.
That's fine, nothing wrong with that. |
Great timing. I'll ignore the segfault then. Using the amazing script from https://lacocina.nl/detect-alsa-output-capabilities:
My conclusion is libsoundio doesn't support |
You are correct. I did a bit of checking, and it seems PulseAudio and ALSA do support this format, potentially Windows and CoreAudio too. So this is something that I will add to libsoundio. Thanks for this report. |
You're welcome. |
Sadly this is going to break ABI compatibility to add this format, so it has to bump major version. |
Does this mean its priority is the same as the other 2.0.0 milestones? What would I need to do to patch it in? EDIT: I mean nontrivial changes for ALSA specifically. |
It's a reasonably straightforward patch to make. The trickiest part is going to be testing. I think the path forward here, once we have a working patch for this, is to release a bug fix version with all the stuff we already have queued up. That'll be 1.1.1. Then we can merge this patch in and release 2.0.0. No problem. The other 2.0.0 milestone items can be postponed. The only downside is it takes the various package managers a while to catch up to new major versions. I'm not too concerned about that, however. User using package managers can use the old version for a while, and developers who need the new stuff can temporarily build from source. (Or use a sweet package manager like NixOS which lets you override packages with new sources in a shell by shell basis) To patch this involves finding out what the equivalent of S24_3LE is in the various audio backends, adding the new SoundIoFormat enum entries with a nice name and documentation, and hooking it up to each backend. Then testing which is the hard part. |
Ugh, I don't know the equivalent of ALSA's SND_PCM_FORMAT_S24_3LE - looking at output devices right now, I guess CoreAudio and WASAPI use more generic parameter combinations like block/container size for different bit depth deliveries (you may be familiar with this, but whatever): https://developer.apple.com/library/prerelease/content/documentation/MusicAudio/Conceptual/CoreAudioOverview/CoreAudioEssentials/CoreAudioEssentials.html#//apple_ref/doc/uid/TP40003577-CH10-SW7 On Windows at least, there are standard formats but 8/16 bit only and the rest you have to guess-and-check by opening a stream (details two links above): https://msdn.microsoft.com/en-us/library/dd743855(v=vs.85).aspx |
For PulseAudio at least: https://freedesktop.org/software/pulseaudio/doxygen/sample.html
JACK is always 32 bit floats. |
(For future reference) Unlike the sio_sine example, write your samples similarly to The PulseAudio backend gives me underflows after a while, maybe because I have to configure latency or realtime priority somewhere on my system. Perhaps this rsoundio issue is related? |
I'm not sure if libsoundio is to blame, but my external sound card is supposed to support 24bit/96kHz (Fiio E10, has reviews so not obscure to Windows/Mac users). The C equivalent of what's failing is:
This is a raw device, Linux 4.5 and updated alsa 1.1.1. I get the same results with or without pulseaudio uninstalled. None of the 24-bit formats work and neither
device->formats
norsoundio_device_supports_format
think it can do it either.Should I contact the manufacturer or something? It's USB plug-and-play, so there are no drivers involved.
The text was updated successfully, but these errors were encountered: