Skip to content

Commit b2e70a6

Browse files
committed
poraudio: print supported APIs in fullhelp
useful mainly to check ASIO presence in Win
1 parent dc80f7c commit b2e70a6

File tree

4 files changed

+36
-23
lines changed

4 files changed

+36
-23
lines changed

src/audio/capture/portaudio.c

+10-13
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Ian Wesley-Smith <[email protected]>
1010
* Martin Pulec <[email protected]>
1111
*
12-
* Copyright (c) 2005-2024 CESNET
12+
* Copyright (c) 2005-2025 CESNET
1313
*
1414
* Redistribution and use in source and binary forms, with or without
1515
* modification, is permitted provided that the following conditions
@@ -110,11 +110,6 @@ static void audio_cap_portaudio_probe(struct device_info **available_devices, in
110110
audio_portaudio_probe(available_devices, count, PORTAUDIO_IN);
111111
}
112112

113-
static void audio_cap_portaudio_help()
114-
{
115-
portaudio_print_help(PORTAUDIO_IN);
116-
}
117-
118113
static void portaudio_close(PaStream * stream) // closes and frees all audio resources
119114
{
120115
Pa_StopStream(stream); // may not be necessary
@@ -152,26 +147,28 @@ parse_fmt(const char *cfg, PaTime *latency, int *input_device_idx,
152147
return 1;
153148
}
154149

155-
static void usage() {
150+
static void
151+
usage(bool full)
152+
{
156153
printf("PortAudio capture usage:\n");
154+
color_printf("\t" TBOLD("-s portaudio:[full]help") "\n");
157155
color_printf("\t" TBOLD(TRED("-s portaudio") "[:<index>[:latency=<l>]]") "\n");
158156
printf("or\n");
159157
color_printf("\t" TBOLD(TRED("-s portaudio") "[:device=<dev>][:latency=<l>]") "\n\n");
160158
printf("options:\n");
161159
color_printf("\t" TBOLD(" <l> ") "\tsuggested latency in sec (experimental, use in case of problems)\n");
162160
color_printf("\t" TBOLD("<dev>") "\tdevice name (or a part of it); device index is also accepted here\n");
163-
printf("\nAvailable PortAudio capture devices:\n");
164-
165-
audio_cap_portaudio_help();
161+
printf("\n");
162+
portaudio_print_help(PORTAUDIO_IN, full);
166163
}
167164

168165
static void * audio_cap_portaudio_init(struct module *parent, const char *cfg)
169166
{
170167
UNUSED(parent);
171168
portaudio_print_version();
172169

173-
if (strcmp(cfg, "help") == 0) {
174-
usage();
170+
if (strcmp(cfg, "help") == 0 || strcmp(cfg, "fullhelp") == 0) {
171+
usage(strcmp(cfg, "fullhelp") == 0);
175172
return INIT_NOERR;
176173
}
177174

@@ -223,7 +220,7 @@ static void * audio_cap_portaudio_init(struct module *parent, const char *cfg)
223220
if(device_info == NULL) {
224221
log_msg(LOG_LEVEL_ERROR, MOD_NAME "Couldn't obtain requested portaudio device index %d.\n"
225222
MOD_NAME "Follows list of available Portaudio devices.\n", input_device_idx);
226-
audio_cap_portaudio_help();
223+
portaudio_print_help(PORTAUDIO_IN, false);
227224
free(s);
228225
Pa_Terminate();
229226
return NULL;

src/audio/playback/portaudio.c

+12-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Martin Pulec <[email protected]>
1010
* Ian Wesley-Smith <[email protected]>
1111
*
12-
* Copyright (c) 2005-2024 CESNET
12+
* Copyright (c) 2005-2025 CESNET
1313
*
1414
* Redistribution and use in source and binary forms, with or without
1515
* modification, is permitted provided that the following conditions
@@ -156,15 +156,18 @@ parse_fmt(const char *cfg, int *input_device_idx,
156156
return 1;
157157
}
158158

159-
static void audio_play_portaudio_help(void) {
159+
static void
160+
audio_play_portaudio_help(bool full)
161+
{
160162
printf("PortAudio playback usage:\n");
163+
color_printf("\t" TBOLD("-s portaudio:[full]help") "\n");
161164
color_printf("\t" TBOLD(TRED("-r portaudio") "[:<index>]") "\n");
162165
printf("or\n");
163166
color_printf("\t" TBOLD(TRED("-r portaudio") "[:device=<dev>]") "\n\n");
164167
printf("options:\n");
165168
color_printf("\t" TBOLD("<dev>") "\tdevice name (or a part of it); device index is also accepted here\n");
166-
printf("\nAvailable PortAudio playback devices:\n");
167-
portaudio_print_help(PORTAUDIO_OUT);
169+
printf("\n");
170+
portaudio_print_help(PORTAUDIO_OUT, full);
168171
}
169172

170173
static void *
@@ -174,9 +177,10 @@ audio_play_portaudio_init(const struct audio_playback_opts *opts)
174177
char output_device_name[STR_LEN] = "";
175178

176179
portaudio_print_version();
177-
178-
if (strcmp(opts->cfg, "help") == 0) {
179-
audio_play_portaudio_help();
180+
181+
if (strcmp(opts->cfg, "help") == 0 ||
182+
strcmp(opts->cfg, "fullhelp") == 0) {
183+
audio_play_portaudio_help(strcmp(opts->cfg, "fullhelp") == 0);
180184
return INIT_NOERR;
181185
}
182186
if (!parse_fmt(opts->cfg, &output_device_idx, output_device_name)) {
@@ -206,7 +210,7 @@ audio_play_portaudio_init(const struct audio_playback_opts *opts)
206210
if (device_info == NULL) {
207211
log_msg(LOG_LEVEL_ERROR, MOD_NAME "Couldn't obtain requested portaudio index %d.\n"
208212
MOD_NAME "Follows list of available Portaudio devices.\n", output_device_idx);
209-
audio_play_portaudio_help();
213+
audio_play_portaudio_help(false);
210214
Pa_Terminate();
211215
free(s);
212216
return NULL;

src/audio/portaudio_common.c

+13-1
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,12 @@ static const char *portaudio_get_device_details(PaDeviceIndex device) {
8080
return buffer;
8181
}
8282

83-
void portaudio_print_help(enum portaudio_device_direction kind)
83+
void
84+
portaudio_print_help(enum portaudio_device_direction kind, bool full)
8485
{
86+
printf("\nAvailable PortAudio %s devices:\n",
87+
kind == PORTAUDIO_OUT ? "playback" : "capture");
88+
8589
int numDevices;
8690
int i;
8791

@@ -130,6 +134,14 @@ void portaudio_print_help(enum portaudio_device_direction kind)
130134
printf("\n");
131135
}
132136

137+
if (full) {
138+
printf ("\nSupported APIs:\n");
139+
for (int i = 0; i < Pa_GetHostApiCount(); ++i) {
140+
const PaHostApiInfo *info = Pa_GetHostApiInfo(i);
141+
printf("\t" TBOLD("%s") "\n", info->name);
142+
}
143+
}
144+
133145
error:
134146
Pa_Terminate();
135147
}

src/audio/portaudio_common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ enum portaudio_device_direction {
5151
PORTAUDIO_OUT
5252
};
5353

54-
void portaudio_print_help(enum portaudio_device_direction);
54+
void portaudio_print_help(enum portaudio_device_direction, bool full);
5555
const char *portaudio_get_device_name(PaDeviceIndex device);
5656
void audio_portaudio_probe(struct device_info **available_devices, int *count, enum portaudio_device_direction);
5757
void portaudio_print_version(void);

0 commit comments

Comments
 (0)