audio: removed variable "audioOpened"

This variable is never read, and can be removed.
This commit is contained in:
Max Kellermann 2008-10-29 20:39:48 +01:00
parent b967702059
commit 030238bb10
1 changed files with 1 additions and 9 deletions

View File

@ -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)