From ffabf8b01313e58528b0e89ccca8bc07d22d360b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 4 Jan 2013 21:59:03 +0100 Subject: DecoderInternal: move initializers to constructor --- src/DecoderInternal.hxx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/DecoderInternal.hxx') diff --git a/src/DecoderInternal.hxx b/src/DecoderInternal.hxx index 698e90bf1..8e3a7d4b1 100644 --- a/src/DecoderInternal.hxx +++ b/src/DecoderInternal.hxx @@ -81,12 +81,15 @@ struct decoder { */ unsigned replay_gain_serial; -#ifdef __cplusplus - decoder(decoder_control *_dc, bool _initial_seek_pending) + decoder(decoder_control *_dc, bool _initial_seek_pending, + struct tag *_tag) :dc(_dc), + timestamp(0), initial_seek_pending(_initial_seek_pending), - initial_seek_running(false) {} -#endif + initial_seek_running(false), + seeking(false), + song_tag(_tag), stream_tag(nullptr), decoder_tag(nullptr), + chunk(nullptr) {} }; /** -- cgit v1.2.3