-
Notifications
You must be signed in to change notification settings - Fork 313
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
macOS: Unable to specify audio device with non-ascii characters #417
Comments
I'm guessing direwolf/src/audio_portaudio.c Lines 216 to 218 in fe6cba2
|
I attempted to simply remove the 0x20-0x7E range test, and at least on my laptop it resolves the issue:
What's the reason behind skipping bytes outside this ASCII subset? Reading through the various PortAudio threads, it looks like they decided to start using UTF-8 strings back in 2014. If so, maybe this needs to be transcoded and/or changed to test for a valid UTF-8 string instead? I'm not sure which encoding direwolf prefers internally (if any). |
I'd be happy to send this patch in as a PR if anyone think it's a good enough solution. |
Thanks for identifying the problem and finding a solution. I did not write this. The Mac-specific part was submitted by someone else and I never looked at it very carefully. It seems to me that the test for buffer full is off by one. As written, count could reach length. There would be no room for the nul terminator. if(count < length - 1) { If the source string is truncated, the result would be nul terminated. |
Fix has been pushed to repository in dev branch. |
Works like a charm 🎉
|
Fixed in the dev branch. This will be mered to master when 1.7 is released. Closing. |
When running macOS with Norwegian locale, the Core Audio audio device is named using the unicode character ø:
MacBook Pro-høyttalere
(translates to Macbook Pro-speakers).When attempting to specify this as the output device,
ø
appears to be stripped from the string. This makes direwolf unusable with the built-in soundcard on macOS with Norwegian locale. I imagine this is a problem with other locales as well, as many use non-ascii characters.My direwolf.conf (encoded using UTF-8):
Direwolf output:
The text was updated successfully, but these errors were encountered: