2009-02-10 18:51:42 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-02-10 18:51:42 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2009-02-10 18:51:42 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Protocol specific code for the audio output library.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2017-04-28 21:42:24 +02:00
|
|
|
#include "Print.hxx"
|
2014-01-27 08:20:25 +01:00
|
|
|
#include "MultipleOutputs.hxx"
|
2017-08-07 21:50:13 +02:00
|
|
|
#include "Filtered.hxx"
|
2015-08-06 22:10:25 +02:00
|
|
|
#include "client/Response.hxx"
|
2013-01-03 10:58:39 +01:00
|
|
|
|
2009-02-10 18:51:42 +01:00
|
|
|
void
|
2015-08-06 22:10:25 +02:00
|
|
|
printAudioDevices(Response &r, const MultipleOutputs &outputs)
|
2009-02-10 18:51:42 +01:00
|
|
|
{
|
2014-01-27 08:20:25 +01:00
|
|
|
for (unsigned i = 0, n = outputs.Size(); i != n; ++i) {
|
2017-02-27 22:55:20 +01:00
|
|
|
const auto &ao = outputs.Get(i);
|
2009-02-10 18:51:42 +01:00
|
|
|
|
2017-12-19 10:33:37 +01:00
|
|
|
r.Format("outputid: %u\n"
|
2015-08-06 22:10:25 +02:00
|
|
|
"outputname: %s\n"
|
2017-12-19 10:36:32 +01:00
|
|
|
"plugin: %s\n"
|
2015-08-06 22:10:25 +02:00
|
|
|
"outputenabled: %i\n",
|
2017-12-19 10:36:32 +01:00
|
|
|
i,
|
|
|
|
ao.GetName(), ao.GetPluginName(),
|
|
|
|
ao.IsEnabled());
|
2017-12-19 08:45:34 +01:00
|
|
|
|
|
|
|
for (const auto &a : ao.GetAttributes())
|
|
|
|
r.Format("attribute: %s=%s\n",
|
|
|
|
a.first.c_str(), a.second.c_str());
|
2009-02-10 18:51:42 +01:00
|
|
|
}
|
|
|
|
}
|