From: Steinar H. Gunderson Date: Sun, 11 Sep 2016 16:51:05 +0000 (+0200) Subject: Update to a bmusb version where fake cards output 8-channel audio. X-Git-Tag: 1.4.0~53 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=737a04d0d56708e39805f33a6e948b5c1908ed39 Update to a bmusb version where fake cards output 8-channel audio. --- diff --git a/audio_mixer.cpp b/audio_mixer.cpp index 87a99bd..a2f25f0 100644 --- a/audio_mixer.cpp +++ b/audio_mixer.cpp @@ -742,7 +742,7 @@ map AudioMixer::get_devices() const AudioDevice *device = &video_cards[card_index]; DeviceInfo info; info.name = device->name; - info.num_channels = 8; // FIXME: This is wrong for fake cards. + info.num_channels = 8; devices.insert(make_pair(spec, info)); } vector available_alsa_devices = alsa_pool.get_devices();