Skip to content

Audio output via stdout and UDP #440

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

Open
wants to merge 14 commits into
base: dev
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
Make internal name length match string length parsed from config file…
… for audio devs
  • Loading branch information
ars-ka0s committed Sep 25, 2023
commit 81fe3a0643a85523f7e887960ada1d499796fe75
4 changes: 2 additions & 2 deletions src/audio.c
Original file line number Diff line number Diff line change
@@ -226,8 +226,8 @@ int audio_open (struct audio_s *pa)
#endif
int chan;
int a;
char audio_in_name[30];
char audio_out_name[30];
char audio_in_name[80];
char audio_out_name[80];


save_audio_config_p = pa;