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/Internal.hxx | |
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/Internal.hxx')
-rw-r--r-- | src/output/Internal.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/output/Internal.hxx b/src/output/Internal.hxx index 31b6fd7c7..cb6904d68 100644 --- a/src/output/Internal.hxx +++ b/src/output/Internal.hxx @@ -263,6 +263,9 @@ struct AudioOutput { * Has the output finished playing #chunk? */ bool chunk_finished; + + AudioOutput(); + ~AudioOutput(); }; /** @@ -294,9 +297,6 @@ ao_base_init(AudioOutput *ao, const config_param ¶m, Error &error); void -ao_base_finish(AudioOutput *ao); - -void audio_output_free(AudioOutput *ao); #endif |