[mpd] add "plugin" to outputs response

The plugin key is used by some clients to determine whether local
playback is possible via HTTP stream, so mimick it.

Signed-off-by: Fabian Groffen <grobian@gentoo.org>
This commit is contained in:
Fabian Groffen 2024-08-05 16:40:31 +02:00 committed by ejurgensen
parent b2a957cdec
commit 5e68381fe4
1 changed files with 18 additions and 0 deletions

View File

@ -25,6 +25,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <ctype.h>
#include <fcntl.h>
#include <limits.h>
#include <errno.h>
@ -3734,22 +3735,39 @@ mpd_command_toggleoutput(struct evbuffer *evbuf, int argc, char **argv, char **e
* Example output:
* outputid: 0
* outputname: Computer
* plugin: alsa
* outputenabled: 1
* outputvolume: 50
* https://mpd.readthedocs.io/en/latest/protocol.html#audio-output-devices
*/
static void
speaker_enum_cb(struct player_speaker_info *spk, void *arg)
{
struct output_outputs_param *param = arg;
struct evbuffer *evbuf = param->buf;
char plugin[sizeof(spk->output_type)];
char *p;
char *q;
/* MPD outputs lowercase plugin (audio_output:type) so convert to
* lowercase, convert spaces to underscores to make it a single word */
for (p = spk->output_type, q = plugin; *p != '\0'; p++, q++)
{
*q = tolower(*p);
if (*q == ' ')
*q = '_';
}
*q = '\0';
evbuffer_add_printf(evbuf,
"outputid: %u\n"
"outputname: %s\n"
"plugin: %s\n"
"outputenabled: %d\n"
"outputvolume: %d\n",
param->nextid,
spk->name,
plugin,
spk->selected,
spk->absvol);
param->nextid++;