Skip to content
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

Audio output via stdout and UDP #440

Open
wants to merge 14 commits into
base: dev
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
Fix crash on null output device
  • Loading branch information
ars-ka0s committed Sep 25, 2023
commit 27e0d4a9a03a414843bee2b6155acb2844e6847b
2 changes: 1 addition & 1 deletion src/audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -527,8 +527,8 @@ int audio_open (struct audio_s *pa)
audio_out_name);
return (-1);
}
break;
#endif
break;

case AUDIO_OUT_TYPE_SDR_UDP:;

Expand Down