furnace/src/engine/sample.h

29 lines
519 B
C
Raw Normal View History

#include "../ta-utils.h"
struct DivSample {
String name;
int length, rate;
2021-05-11 20:26:38 +00:00
signed char vol, pitch;
unsigned char depth;
short* data;
2021-12-14 17:33:26 +00:00
unsigned int rendLength, adpcmRendLength, rendOff;
short* rendData;
2021-12-10 09:22:13 +00:00
unsigned char* adpcmRendData;
2021-12-18 06:03:59 +00:00
bool save(const char* path);
DivSample():
name(""),
length(0),
rate(0),
vol(0),
pitch(0),
depth(16),
data(NULL),
rendLength(0),
2021-12-11 03:51:50 +00:00
adpcmRendLength(0),
2021-12-11 04:41:00 +00:00
rendOff(0),
2021-12-10 09:22:13 +00:00
rendData(NULL),
adpcmRendData(NULL) {}
~DivSample();
};