From 030238bb1035acc825cebe793be51eb034f92e4f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 29 Oct 2008 20:39:48 +0100 Subject: audio: removed variable "audioOpened" This variable is never read, and can be removed. --- src/audio.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/audio.c b/src/audio.c index bfebac4fc..cd029c09b 100644 --- a/src/audio.c +++ b/src/audio.c @@ -45,8 +45,6 @@ static unsigned int audioOutputArraySize; */ static bool *audioDeviceStates; -static uint8_t audioOpened; - static unsigned int audio_output_count(void) { unsigned int nr = 0; @@ -315,15 +313,11 @@ int openAudioDevice(const struct audio_format *audioFormat) ret = 0; } - if (ret == 0) - audioOpened = 1; - else { + if (ret != 0) { /* close all devices if there was an error */ for (i = 0; i < audioOutputArraySize; ++i) { audio_output_close(&audioOutputArray[i]); } - - audioOpened = 0; } return ret; @@ -362,8 +356,6 @@ void closeAudioDevice(void) for (i = 0; i < audioOutputArraySize; ++i) audio_output_close(&audioOutputArray[i]); - - audioOpened = 0; } void sendMetadataToAudioDevice(const struct tag *tag) -- cgit v1.2.3