summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-08-03 08:49:26 +0200
committerMax Kellermann <max@musicpd.org>2019-08-03 08:49:26 +0200
commit5e5fadb5f2ec0d9c5c5baba9fe3ec673a7c78617 (patch)
tree1cd054b9153b9331d1b73a2180eda7eba48efab7
parent952c79323591e28ee1bfff76cff6f4aefeaefeab (diff)
decoder/mad: remove unnecessary initializers
These will not be used until they are initialized in SyncAndSend().
-rw-r--r--src/decoder/plugins/MadDecoderPlugin.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/plugins/MadDecoderPlugin.cxx b/src/decoder/plugins/MadDecoderPlugin.cxx
index c27103185..aa8772859 100644
--- a/src/decoder/plugins/MadDecoderPlugin.cxx
+++ b/src/decoder/plugins/MadDecoderPlugin.cxx
@@ -125,8 +125,8 @@ class MadDecoder {
unsigned long highest_frame = 0;
unsigned long max_frames = 0;
unsigned long current_frame = 0;
- unsigned int drop_start_frames = 0;
- unsigned int drop_end_frames = 0;
+ unsigned int drop_start_frames;
+ unsigned int drop_end_frames;
unsigned int drop_start_samples = 0;
unsigned int drop_end_samples = 0;
bool found_replay_gain = false;