furnace/src/engine/sample.h

31 lines
580 B
C
Raw Normal View History

#include "../ta-utils.h"
struct DivSample {
String name;
2022-01-15 17:54:21 -05:00
int length, rate, loopStart;
2021-05-11 16:26:38 -04:00
signed char vol, pitch;
unsigned char depth;
short* data;
unsigned int rendLength, adpcmRendLength, rendOff, rendOffP;
short* rendData;
2021-12-10 04:22:13 -05:00
unsigned char* adpcmRendData;
2021-12-18 01:03:59 -05:00
bool save(const char* path);
DivSample():
name(""),
length(0),
rate(32000),
2022-01-15 17:54:21 -05:00
loopStart(-1),
vol(0),
pitch(0),
depth(16),
data(NULL),
rendLength(0),
2021-12-10 22:51:50 -05:00
adpcmRendLength(0),
2021-12-10 23:41:00 -05:00
rendOff(0),
rendOffP(0),
2021-12-10 04:22:13 -05:00
rendData(NULL),
adpcmRendData(NULL) {}
~DivSample();
};