aboutsummaryrefslogtreecommitdiff
path: root/src/mixer
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-03-26 19:48:13 +0100
committerMax Kellermann <max@duempel.org>2009-03-26 19:48:13 +0100
commit881026623c16fa1bd4846329731c693390a7bb68 (patch)
tree23b29691e8ac626db9a662bfe2d02b052a3f29d6 /src/mixer
parentdd8c6d67388b21458c8feff8225f5d45fd7e9386 (diff)
oss_mixer: removed superfluous checks
The MPD core guarantees that methods are always invoked in a consistent state. This means we can remove lots of checks from the volume methods.
Diffstat (limited to 'src/mixer')
-rw-r--r--src/mixer/oss_mixer.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mixer/oss_mixer.c b/src/mixer/oss_mixer.c
index a2f5adbd..acbd05fd 100644
--- a/src/mixer/oss_mixer.c
+++ b/src/mixer/oss_mixer.c
@@ -21,6 +21,8 @@
#include "../mixer_api.h"
#include <glib.h>
+
+#include <assert.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
@@ -58,7 +60,6 @@ oss_mixer_init(const struct config_param *param)
VOLUME_MIXER_OSS_DEFAULT);
om->control = config_get_block_string(param, "mixer_control", NULL);
- om->device_fd = -1;
om->volume_control = SOUND_MIXER_PCM;
return &om->base;
@@ -76,9 +77,10 @@ static void
oss_mixer_close(struct mixer *data)
{
struct oss_mixer *om = (struct oss_mixer *) data;
- if (om->device_fd != -1)
- while (close(om->device_fd) && errno == EINTR) ;
- om->device_fd = -1;
+
+ assert(om->device_fd >= 0);
+
+ close(om->device_fd);
}
static int
@@ -141,8 +143,7 @@ oss_mixer_get_volume(struct mixer *mixer)
int left, right, level;
int ret;
- if (om->device_fd < 0 && !oss_mixer_open(mixer))
- return false;
+ assert(om->device_fd >= 0);
ret = ioctl(om->device_fd, MIXER_READ(om->volume_control), &level);
if (ret < 0) {
@@ -168,8 +169,7 @@ oss_mixer_set_volume(struct mixer *mixer, unsigned volume)
int level;
int ret;
- if (om->device_fd < 0 && !oss_mixer_open(mixer))
- return false;
+ assert(om->device_fd >= 0);
if (volume > 100)
volume = 100;