diff options
author | Max Kellermann <max@duempel.org> | 2014-01-28 12:24:48 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-28 12:37:58 +0100 |
commit | c4403c523f3b5514be499ff20887ec340f2272e9 (patch) | |
tree | cee7034796c386517f54ab2b61e762939c458f6f /src/output/plugins/RoarOutputPlugin.cxx | |
parent | 07b89b2bad7543fa07347ffdccc71d4899dd2b02 (diff) | |
download | mpd-c4403c523f3b5514be499ff20887ec340f2272e9.tar.gz mpd-c4403c523f3b5514be499ff20887ec340f2272e9.tar.xz mpd-c4403c523f3b5514be499ff20887ec340f2272e9.zip |
AudioOutput: add constructor and destructor
Diffstat (limited to 'src/output/plugins/RoarOutputPlugin.cxx')
-rw-r--r-- | src/output/plugins/RoarOutputPlugin.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/output/plugins/RoarOutputPlugin.cxx b/src/output/plugins/RoarOutputPlugin.cxx index 9b7a342e5..98cede62c 100644 --- a/src/output/plugins/RoarOutputPlugin.cxx +++ b/src/output/plugins/RoarOutputPlugin.cxx @@ -61,10 +61,6 @@ public: error); } - void Deinitialize() { - ao_base_finish(&base); - } - void Configure(const config_param ¶m); bool Open(AudioFormat &audio_format, Error &error); @@ -155,7 +151,6 @@ roar_finish(AudioOutput *ao) { RoarOutput *self = (RoarOutput *)ao; - self->Deinitialize(); delete self; } |