2015-06-21 18:33:46 +03:00
|
|
|
/*
|
2024-01-02 00:15:26 +03:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely.
|
|
|
|
*/
|
2022-11-27 07:43:38 +03:00
|
|
|
#include <SDL3/SDL.h>
|
2022-12-15 07:58:20 +03:00
|
|
|
#include <SDL3/SDL_main.h>
|
2023-03-17 02:25:39 +03:00
|
|
|
#include <SDL3/SDL_test.h>
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
static void
|
2024-06-15 00:57:14 +03:00
|
|
|
print_devices(SDL_bool recording)
|
2015-06-21 18:33:46 +03:00
|
|
|
{
|
2022-09-29 17:41:40 +03:00
|
|
|
SDL_AudioSpec spec;
|
2024-06-15 00:57:14 +03:00
|
|
|
const char *typestr = (recording ? "recording" : "playback");
|
2023-06-24 18:24:51 +03:00
|
|
|
int n = 0;
|
2023-09-13 18:03:17 +03:00
|
|
|
int frames;
|
2024-07-27 04:57:18 +03:00
|
|
|
SDL_AudioDeviceID *devices = recording ? SDL_GetAudioRecordingDevices(&n) : SDL_GetAudioPlaybackDevices(&n);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
2023-11-10 00:29:15 +03:00
|
|
|
if (!devices) {
|
2023-06-24 18:24:51 +03:00
|
|
|
SDL_Log(" Driver failed to report %s devices: %s\n\n", typestr, SDL_GetError());
|
2022-12-02 00:07:03 +03:00
|
|
|
} else if (n == 0) {
|
2015-06-21 18:33:46 +03:00
|
|
|
SDL_Log(" No %s devices found.\n\n", typestr);
|
2022-12-02 00:07:03 +03:00
|
|
|
} else {
|
2015-06-21 18:33:46 +03:00
|
|
|
int i;
|
2023-06-24 18:24:51 +03:00
|
|
|
SDL_Log("Found %d %s device%s:\n", n, typestr, n != 1 ? "s" : "");
|
2015-06-21 18:33:46 +03:00
|
|
|
for (i = 0; i < n; i++) {
|
2024-06-02 05:05:21 +03:00
|
|
|
const char *name = SDL_GetAudioDeviceName(devices[i]);
|
2023-11-10 00:29:15 +03:00
|
|
|
if (name) {
|
2016-10-01 22:29:55 +03:00
|
|
|
SDL_Log(" %d: %s\n", i, name);
|
2022-12-02 00:07:03 +03:00
|
|
|
} else {
|
2016-10-01 22:29:55 +03:00
|
|
|
SDL_Log(" %d Error: %s\n", i, SDL_GetError());
|
2022-12-02 00:07:03 +03:00
|
|
|
}
|
2022-09-29 17:41:40 +03:00
|
|
|
|
2023-09-13 18:03:17 +03:00
|
|
|
if (SDL_GetAudioDeviceFormat(devices[i], &spec, &frames) == 0) {
|
2022-09-29 17:41:40 +03:00
|
|
|
SDL_Log(" Sample Rate: %d\n", spec.freq);
|
|
|
|
SDL_Log(" Channels: %d\n", spec.channels);
|
|
|
|
SDL_Log(" SDL_AudioFormat: %X\n", spec.format);
|
2023-09-13 18:03:17 +03:00
|
|
|
SDL_Log(" Buffer Size: %d frames\n", frames);
|
2022-09-29 17:41:40 +03:00
|
|
|
}
|
2015-06-21 18:33:46 +03:00
|
|
|
}
|
|
|
|
SDL_Log("\n");
|
|
|
|
}
|
2024-07-27 04:57:18 +03:00
|
|
|
SDL_free(devices);
|
2015-06-21 18:33:46 +03:00
|
|
|
}
|
|
|
|
|
2022-11-30 23:51:59 +03:00
|
|
|
int main(int argc, char **argv)
|
2015-06-21 18:33:46 +03:00
|
|
|
{
|
2022-09-29 17:33:07 +03:00
|
|
|
SDL_AudioSpec spec;
|
2023-03-17 02:25:39 +03:00
|
|
|
int i;
|
2015-06-21 18:33:46 +03:00
|
|
|
int n;
|
2023-09-13 18:03:17 +03:00
|
|
|
int frames;
|
2023-03-17 02:25:39 +03:00
|
|
|
SDLTest_CommonState *state;
|
|
|
|
|
|
|
|
/* Initialize test framework */
|
|
|
|
state = SDLTest_CommonCreateState(argv, 0);
|
2023-11-10 00:29:15 +03:00
|
|
|
if (!state) {
|
2023-03-17 02:25:39 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
/* Enable standard application logging */
|
2024-05-16 20:00:50 +03:00
|
|
|
SDL_SetLogPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
2023-03-17 02:25:39 +03:00
|
|
|
/* Parse commandline */
|
|
|
|
if (!SDLTest_CommonDefaultArgs(state, argc, argv)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-06-21 18:33:46 +03:00
|
|
|
/* Load the SDL library */
|
|
|
|
if (SDL_Init(SDL_INIT_AUDIO) < 0) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
|
2022-11-27 19:38:43 +03:00
|
|
|
return 1;
|
2015-06-21 18:33:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Print available audio drivers */
|
|
|
|
n = SDL_GetNumAudioDrivers();
|
|
|
|
if (n == 0) {
|
|
|
|
SDL_Log("No built-in audio drivers\n\n");
|
|
|
|
} else {
|
|
|
|
SDL_Log("Built-in audio drivers:\n");
|
|
|
|
for (i = 0; i < n; ++i) {
|
2016-10-01 22:29:55 +03:00
|
|
|
SDL_Log(" %d: %s\n", i, SDL_GetAudioDriver(i));
|
2015-06-21 18:33:46 +03:00
|
|
|
}
|
2022-12-08 12:40:01 +03:00
|
|
|
SDL_Log("Select a driver with the SDL_AUDIO_DRIVER environment variable.\n");
|
2015-06-21 18:33:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
SDL_Log("Using audio driver: %s\n\n", SDL_GetCurrentAudioDriver());
|
|
|
|
|
2023-06-24 18:24:51 +03:00
|
|
|
print_devices(SDL_FALSE);
|
|
|
|
print_devices(SDL_TRUE);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
2024-06-15 00:57:14 +03:00
|
|
|
if (SDL_GetAudioDeviceFormat(SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK, &spec, &frames) < 0) {
|
|
|
|
SDL_Log("Error when calling SDL_GetAudioDeviceFormat(default playback): %s\n", SDL_GetError());
|
2022-09-29 17:33:07 +03:00
|
|
|
} else {
|
2024-06-15 00:57:14 +03:00
|
|
|
SDL_Log("Default Playback Device:\n");
|
2022-09-29 17:41:40 +03:00
|
|
|
SDL_Log("Sample Rate: %d\n", spec.freq);
|
|
|
|
SDL_Log("Channels: %d\n", spec.channels);
|
|
|
|
SDL_Log("SDL_AudioFormat: %X\n", spec.format);
|
2023-09-13 18:03:17 +03:00
|
|
|
SDL_Log("Buffer Size: %d frames\n", frames);
|
2022-09-29 17:33:07 +03:00
|
|
|
}
|
|
|
|
|
2024-06-15 00:57:14 +03:00
|
|
|
if (SDL_GetAudioDeviceFormat(SDL_AUDIO_DEVICE_DEFAULT_RECORDING, &spec, &frames) < 0) {
|
|
|
|
SDL_Log("Error when calling SDL_GetAudioDeviceFormat(default recording): %s\n", SDL_GetError());
|
2022-09-29 17:33:07 +03:00
|
|
|
} else {
|
2024-06-15 00:57:14 +03:00
|
|
|
SDL_Log("Default Recording Device:\n");
|
2022-09-29 17:41:40 +03:00
|
|
|
SDL_Log("Sample Rate: %d\n", spec.freq);
|
|
|
|
SDL_Log("Channels: %d\n", spec.channels);
|
|
|
|
SDL_Log("SDL_AudioFormat: %X\n", spec.format);
|
2023-09-13 18:03:17 +03:00
|
|
|
SDL_Log("Buffer Size: %d frames\n", frames);
|
2022-09-29 17:33:07 +03:00
|
|
|
}
|
|
|
|
|
2015-06-21 18:33:46 +03:00
|
|
|
SDL_Quit();
|
2023-03-17 02:25:39 +03:00
|
|
|
SDLTest_CommonDestroyState(state);
|
2015-06-21 18:33:46 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2023-06-24 18:24:51 +03:00
|
|
|
|