diff options
author | Max Kellermann <max@duempel.org> | 2008-09-24 07:20:36 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-24 07:20:36 +0200 |
commit | 2403d32a5007572f853c7782957f86aedf3d3aff (patch) | |
tree | fe25886d65f49f3c18cd306a7ee4a94aeea3d24e /src/audioOutputs/audioOutput_null.c | |
parent | 3cae6856b8c6096b3f932a4ab30476a8d1187e58 (diff) | |
download | mpd-2403d32a5007572f853c7782957f86aedf3d3aff.tar.gz mpd-2403d32a5007572f853c7782957f86aedf3d3aff.tar.xz mpd-2403d32a5007572f853c7782957f86aedf3d3aff.zip |
output: set audio_output->open=1 in audio_output_task()
Since the output plugin returns a value indicating success or error,
we can have the output core code assign the "open" flag.
Diffstat (limited to 'src/audioOutputs/audioOutput_null.c')
-rw-r--r-- | src/audioOutputs/audioOutput_null.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/audioOutputs/audioOutput_null.c b/src/audioOutputs/audioOutput_null.c index 37e0ec0c8..c4c7d339e 100644 --- a/src/audioOutputs/audioOutput_null.c +++ b/src/audioOutputs/audioOutput_null.c @@ -31,7 +31,6 @@ static int null_openDevice(struct audio_output *audioOutput, struct audio_format *audio_format) { audioOutput->data = timer_new(audio_format); - audioOutput->open = 1; return 0; } @@ -41,8 +40,6 @@ static void null_closeDevice(struct audio_output *audioOutput) timer_free(audioOutput->data); audioOutput->data = NULL; } - - audioOutput->open = 0; } static int null_playAudio(struct audio_output *audioOutput, |