diff options
author | Max Kellermann <max@duempel.org> | 2009-01-30 19:47:59 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-30 19:47:59 +0100 |
commit | a2e0b71aadfb3057b2bda0086b02b199298fe05f (patch) | |
tree | 3261f279054048d17623427468a0dd447b53a734 /src/output/mvp_plugin.c | |
parent | eeec32feaa83a6a83b7bec1e0c47079145ba90d8 (diff) | |
download | mpd-a2e0b71aadfb3057b2bda0086b02b199298fe05f.tar.gz mpd-a2e0b71aadfb3057b2bda0086b02b199298fe05f.tar.xz mpd-a2e0b71aadfb3057b2bda0086b02b199298fe05f.zip |
output_api: removed audio_output_closed()
The function is only used by the MVP output plugin, and this one call
is wrong.
Diffstat (limited to '')
-rw-r--r-- | src/output/mvp_plugin.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/output/mvp_plugin.c b/src/output/mvp_plugin.c index 7eccb23a2..cb570c8ee 100644 --- a/src/output/mvp_plugin.c +++ b/src/output/mvp_plugin.c @@ -245,7 +245,6 @@ static void mvp_dropBufferedAudio(void *data) ioctl(md->fd, MVP_SET_AUD_RESET, 0x11); close(md->fd); md->fd = -1; - audio_output_closed(md->audio_output); } } |