diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-03-09 10:16:16 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-03-09 10:16:16 +0100 |
commit | eb89599c58b186c38f66146c5635f20cec5c8112 (patch) | |
tree | 4c02642461d60a8db3b707221abc1d14c63ba6f2 /dvbapi.c | |
parent | 18ab84b0c108763f6c591abdbea228faabfdea1c (diff) | |
download | vdr-eb89599c58b186c38f66146c5635f20cec5c8112.tar.gz vdr-eb89599c58b186c38f66146c5635f20cec5c8112.tar.bz2 |
Fixed resetting 'mute' state when setting the volume to a non-zero value
Diffstat (limited to 'dvbapi.c')
-rw-r--r-- | dvbapi.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbapi.c 1.158 2002/03/08 16:31:23 kls Exp $ + * $Id: dvbapi.c 1.159 2002/03/09 10:14:07 kls Exp $ */ #include "dvbapi.h" @@ -2717,6 +2717,8 @@ void cDvbApi::SetVolume(int Volume, bool Absolute) audioMixer_t am; am.volume_left = am.volume_right = volume; CHECK(ioctl(fd_audio, AUDIO_SET_MIXER, &am)); + if (volume > 0) + mute = false; } } |