strawberry-audio-player-win.../src/engine/alsadevicefinder.cpp

114 lines
3.1 KiB
C++
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
* Copyright 2017, Jonas Kvinge <jonas@jkvinge.net>
*
* Strawberry 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 3 of the License, or
* (at your option) any later version.
*
* Strawberry 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.
*
* You should have received a copy of the GNU General Public License
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "config.h"
#include <stdio.h>
#include <errno.h>
2018-02-27 18:06:05 +01:00
#include <alsa/asoundlib.h>
2018-06-12 00:26:08 +02:00
#include <boost/scope_exit.hpp>
2018-02-27 18:06:05 +01:00
#include <QList>
#include <QVariant>
#include <QString>
#include <QtDebug>
2018-02-27 18:06:05 +01:00
#include <core/logging.h>
#include "devicefinder.h"
#include "alsadevicefinder.h"
2018-02-27 18:06:05 +01:00
AlsaDeviceFinder::AlsaDeviceFinder()
: DeviceFinder("alsa") {
}
QList<DeviceFinder::Device> AlsaDeviceFinder::ListDevices() {
QList<Device> ret;
int result = -1;
2018-02-27 18:06:05 +01:00
snd_pcm_stream_name(SND_PCM_STREAM_PLAYBACK);
2018-06-12 00:26:08 +02:00
int card = -1;
snd_ctl_card_info_t* cardinfo;
snd_ctl_card_info_alloca(&cardinfo);
2018-02-27 18:06:05 +01:00
while (true) {
result = snd_card_next(&card);
if (result < 0) {
qLog(Error) << "Unable to get soundcard:" << snd_strerror(result);
2018-06-07 19:38:40 +02:00
break;
2018-02-27 18:06:05 +01:00
}
2018-06-07 19:38:40 +02:00
if (card < 0) break;
2018-02-27 18:06:05 +01:00
2018-06-12 00:26:08 +02:00
char str[32];
snd_ctl_t* handle;
snprintf(str, 31, "hw:%d", card);
result = snd_ctl_open(&handle, str, 0);
2018-02-27 18:06:05 +01:00
if (result < 0) {
qLog(Error) << "Unable to open soundcard" << card << ":" << snd_strerror(result);
2018-02-27 18:06:05 +01:00
continue;
}
result = snd_ctl_card_info(handle, cardinfo);
if (result < 0) {
qLog(Error) << "Control hardware failure for card" << card << ":" << snd_strerror(result);
2018-06-12 00:26:08 +02:00
BOOST_SCOPE_EXIT(&handle) { snd_ctl_close(handle); }
BOOST_SCOPE_EXIT_END
2018-02-27 18:06:05 +01:00
continue;
}
2018-06-12 00:26:08 +02:00
int dev = -1;
snd_pcm_info_t* pcminfo;
snd_pcm_info_alloca(&pcminfo);
2018-02-27 18:06:05 +01:00
while (true) {
result = snd_ctl_pcm_next_device(handle, &dev);
if (result < 0) {
qLog(Error) << "Unable to get PCM for card" << card << ":" << snd_strerror(result);
2018-02-27 18:06:05 +01:00
continue;
}
if (dev < 0) break;
snd_pcm_info_set_device(pcminfo, dev);
snd_pcm_info_set_subdevice(pcminfo, 0);
snd_pcm_info_set_stream(pcminfo, SND_PCM_STREAM_PLAYBACK);
2018-02-27 18:06:05 +01:00
result = snd_ctl_pcm_info(handle, pcminfo);
if (result < 0) {
if (result != -ENOENT) qLog(Error) << "Unable to get control digital audio info for card" << card << ":" << snd_strerror(result);
2018-02-27 18:06:05 +01:00
continue;
}
Device device;
device.description = QString("%1 %2").arg(snd_ctl_card_info_get_name(cardinfo)).arg(snd_pcm_info_get_name(pcminfo));
device.value = QString("hw:%1,%2").arg(card).arg(dev);
device.iconname = GuessIconName(device.description);
2018-02-27 18:06:05 +01:00
ret.append(device);
}
2018-06-12 00:26:08 +02:00
BOOST_SCOPE_EXIT(&handle) { snd_ctl_close(handle); }
BOOST_SCOPE_EXIT_END
2018-02-27 18:06:05 +01:00
}
snd_config_update_free_global();
return ret;
}