This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "wav.h" | |
#undef DEBUG_WAVEFORMAT | |
#include <cstring> // for memcmp | |
using namespace dust; | |
static const char * eNotRIFF = "Unknown file format."; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <vector> | |
#include <string> | |
#include <cstdio> | |
#include <cmath> | |
// set to 1 to make LU factorization show pivots | |
#define VERBOSE_LU 0 | |
// gMin for diodes etc.. | |
static const double gMin = 1e-12; |