Skip to content

Commit

Permalink
server: Note in the log when trying to make output module go through …
Browse files Browse the repository at this point in the history
…server audio
  • Loading branch information
sthibaul committed Nov 11, 2023
1 parent d225806 commit 1b302ee
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/server/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -698,9 +698,11 @@ int output_send_audio_settings(OutputModule * output)
int err;

/* First try to get output through server */
MSG(4, "Trying to make output module use audio output through server.");
if (output_server_audio(output) == 0)
/* Went fine, good! */
return 0;
MSG(4, "Output module does not support audio output through server, making it open audio by itself.");

output->audio = NULL;
MSG(4, "Module set parameters.");
Expand Down

0 comments on commit 1b302ee

Please sign in to comment.