aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Effect/filewriter/filewriterplugin.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2020-02-20 19:28:44 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2020-02-20 19:28:44 +0000
commit8cede851af210c0ce8d09199170223d6960c081b (patch)
treee94b87d7b794373332214b05bb733462ea98bbbc /src/plugins/Effect/filewriter/filewriterplugin.h
parent94aa57d698a6400ae9c9d46991193d8ee844bb83 (diff)
downloadqmmp-8cede851af210c0ce8d09199170223d6960c081b.tar.gz
qmmp-8cede851af210c0ce8d09199170223d6960c081b.tar.bz2
qmmp-8cede851af210c0ce8d09199170223d6960c081b.zip
filewriter: feature to write singe file (#1033)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9236 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Effect/filewriter/filewriterplugin.h')
-rw-r--r--src/plugins/Effect/filewriter/filewriterplugin.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/Effect/filewriter/filewriterplugin.h b/src/plugins/Effect/filewriter/filewriterplugin.h
index 92ce91008..329358277 100644
--- a/src/plugins/Effect/filewriter/filewriterplugin.h
+++ b/src/plugins/Effect/filewriter/filewriterplugin.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2017 by Ilya Kotov *
+ * Copyright (C) 2017-2020 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -48,7 +48,8 @@ private:
vorbis_comment m_vc; //struct that stores all the user comments
vorbis_dsp_state m_vd; //central working state for the packet->PCM decoder
vorbis_block m_vb; //local working space for packet->PCM decode
- bool m_inited;
+ bool m_inited = false;
+ bool m_singleFile = false;
QFile m_file;
};