mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 22:55:42 +01:00
Fixed mono mute & capture...
This commit is contained in:
parent
2ce1b9a586
commit
0092ec6c66
1 changed files with 4 additions and 0 deletions
|
@ -528,6 +528,10 @@ mixer_update_cbar (int group_index)
|
|||
} else {
|
||||
vright = vleft;
|
||||
vright1 = vleft1;
|
||||
group.mute &= ~(group.mute & SND_MIXER_CHN_MASK_FRONT_RIGHT);
|
||||
group.mute |= (group.mute & SND_MIXER_CHN_MASK_FRONT_LEFT) << 1;
|
||||
group.capture &= ~(group.capture & SND_MIXER_CHN_MASK_FRONT_RIGHT);
|
||||
group.capture |= (group.capture & SND_MIXER_CHN_MASK_FRONT_LEFT) << 1;
|
||||
}
|
||||
|
||||
/* get channel bar position
|
||||
|
|
Loading…
Reference in a new issue