mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
Remove unused structs in sffile code
This commit is contained in:
parent
16d2f43509
commit
b61abdd907
1 changed files with 0 additions and 39 deletions
|
@ -45,10 +45,6 @@ typedef struct _SFInst SFInst;
|
||||||
typedef struct _SFPreset SFPreset;
|
typedef struct _SFPreset SFPreset;
|
||||||
typedef struct _SFData SFData;
|
typedef struct _SFData SFData;
|
||||||
typedef struct _SFChunk SFChunk;
|
typedef struct _SFChunk SFChunk;
|
||||||
typedef struct _SFPhdr SFPhdr;
|
|
||||||
typedef struct _SFBag SFBag;
|
|
||||||
typedef struct _SFIhdr SFIhdr;
|
|
||||||
typedef struct _SFShdr SFShdr;
|
|
||||||
|
|
||||||
|
|
||||||
struct _SFVersion
|
struct _SFVersion
|
||||||
|
@ -180,41 +176,6 @@ struct _SFChunk
|
||||||
unsigned int size; /* size of the following chunk */
|
unsigned int size; /* size of the following chunk */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _SFPhdr
|
|
||||||
{
|
|
||||||
unsigned char name[20]; /* preset name */
|
|
||||||
unsigned short preset; /* preset number */
|
|
||||||
unsigned short bank; /* bank number */
|
|
||||||
unsigned short pbagndx; /* index into preset bag */
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _SFBag
|
|
||||||
{
|
|
||||||
unsigned short genndx; /* index into generator list */
|
|
||||||
unsigned short modndx; /* index into modulator list */
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _SFIhdr
|
|
||||||
{
|
|
||||||
char name[20]; /* Name of instrument */
|
|
||||||
unsigned short ibagndx; /* Instrument bag index */
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _SFShdr
|
|
||||||
{
|
|
||||||
/* Sample header loading struct */
|
|
||||||
char name[20]; /* Sample name */
|
|
||||||
unsigned int start; /* Offset to start of sample */
|
|
||||||
unsigned int end; /* Offset to end of sample */
|
|
||||||
unsigned int loopstart; /* Offset to start of loop */
|
|
||||||
unsigned int loopend; /* Offset to end of loop */
|
|
||||||
unsigned int samplerate; /* Sample rate recorded at */
|
|
||||||
unsigned char origpitch; /* root midi key number */
|
|
||||||
signed char pitchadj; /* pitch correction in cents */
|
|
||||||
unsigned short samplelink; /* Not used */
|
|
||||||
unsigned short sampletype; /* 1 mono,2 right,4 left,linked 8,0x8000=ROM */
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Public functions */
|
/* Public functions */
|
||||||
SFData *fluid_sffile_open(const char *fname, const fluid_file_callbacks_t *fcbs);
|
SFData *fluid_sffile_open(const char *fname, const fluid_file_callbacks_t *fcbs);
|
||||||
void fluid_sffile_close(SFData *sf);
|
void fluid_sffile_close(SFData *sf);
|
||||||
|
|
Loading…
Reference in a new issue