diff options
Diffstat (limited to 'drumgizmo/output/wavfile.cc')
-rw-r--r-- | drumgizmo/output/wavfile.cc | 4 |
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); } |