summaryrefslogtreecommitdiff
path: root/drumgizmo/output
diff options
context:
space:
mode:
authorChristian Glöckner <cgloeckner@freenet.de>2016-01-21 18:05:07 +0100
committerAndré Nusser <andre.nusser@googlemail.com>2016-02-09 09:02:18 +0100
commit6004e264418fa1f8a033c69633b2f0205c247266 (patch)
tree4d01947d08f33ac1cace240f12ed2e5e660bac00 /drumgizmo/output
parent6253e37c2f0219d61193d0d405e7f23a4bae3287 (diff)
Added missing changes
Diffstat (limited to 'drumgizmo/output')
-rw-r--r--drumgizmo/output/wavfile.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/drumgizmo/output/wavfile.cc b/drumgizmo/output/wavfile.cc
index 7a59892..e1cb16e 100644
--- a/drumgizmo/output/wavfile.cc
+++ b/drumgizmo/output/wavfile.cc
@@ -24,8 +24,6 @@
* along with DrumGizmo; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
-#include <cassert>
-
#include "wavfile.h"
WavfileOutputEngine::WavfileOutputEngine()
@@ -89,8 +87,6 @@ void WavfileOutputEngine::run(int ch, sample_t* samples, size_t nsamples) {
return;
}
- assert(channels[ch] != nullptr);
- assert(samples != nullptr);
sf_writef_float(channels[ch], samples, nsamples);
}