Home
last modified time | relevance | path

Searched refs:mixer_device_ (Results 1 – 2 of 2) sorted by relevance

/dports/multimedia/snapcast/snapcast-0.25.0/client/player/
H A Dalsa_player.cpp56 mixer_device_ = utils::string::split_left(settings_.pcm_device.name, ':', card); in AlsaPlayer()
66 mixer_device_ = "hw:" + std::to_string(card_idx); in AlsaPlayer()
70 LOG(DEBUG, LOG_TAG) << "Mixer: " << mixer_name_ << ", device: " << mixer_device_ << "\n"; in AlsaPlayer()
241 if ((err = snd_ctl_open(&ctl_, mixer_device_.c_str(), SND_CTL_READONLY)) < 0) in initMixer()
242 … throw SnapException("Can't open control for " + mixer_device_ + ", error: " + snd_strerror(err)); in initMixer()
244 …throw SnapException("Can't subscribe for events for " + mixer_device_ + ", error: " + snd_strerror… in initMixer()
262 if ((err = snd_mixer_attach(mixer_, mixer_device_.c_str())) < 0) in initMixer()
263 …throw SnapException("Failed to attach mixer to " + mixer_device_ + ", error: " + snd_strerror(err)… in initMixer()
H A Dalsa_player.hpp76 std::string mixer_device_; member in player::AlsaPlayer