1998-08-13 17:43:39 +02:00
|
|
|
#ifndef FORMATS_H
|
|
|
|
#define FORMATS_H 1
|
|
|
|
|
2022-12-31 08:03:34 +01:00
|
|
|
#include "bswap.h"
|
1998-08-13 17:43:39 +02:00
|
|
|
|
|
|
|
/* Definitions for .VOC files */
|
|
|
|
|
2004-09-13 09:04:53 +02:00
|
|
|
#define VOC_MAGIC_STRING "Creative Voice File\x1A"
|
1998-08-13 17:43:39 +02:00
|
|
|
#define VOC_ACTUAL_VERSION 0x010A
|
|
|
|
#define VOC_SAMPLESIZE 8
|
|
|
|
|
|
|
|
#define VOC_MODE_MONO 0
|
|
|
|
#define VOC_MODE_STEREO 1
|
|
|
|
|
|
|
|
#define VOC_DATALEN(bp) ((u_long)(bp->datalen) | \
|
|
|
|
((u_long)(bp->datalen_m) << 8) | \
|
|
|
|
((u_long)(bp->datalen_h) << 16) )
|
|
|
|
|
|
|
|
typedef struct voc_header {
|
2023-10-17 13:44:03 +02:00
|
|
|
uint8_t magic[20]; /* must be MAGIC_STRING */
|
|
|
|
uint16_t headerlen; /* Headerlength, should be 0x1A */
|
|
|
|
uint16_t version; /* VOC-file version */
|
|
|
|
uint16_t coded_ver; /* 0x1233-version */
|
1998-08-13 17:43:39 +02:00
|
|
|
} VocHeader;
|
|
|
|
|
|
|
|
typedef struct voc_blocktype {
|
2023-10-17 13:44:03 +02:00
|
|
|
uint8_t type;
|
|
|
|
uint8_t datalen; /* low-byte */
|
|
|
|
uint8_t datalen_m; /* medium-byte */
|
|
|
|
uint8_t datalen_h; /* high-byte */
|
1998-08-13 17:43:39 +02:00
|
|
|
} VocBlockType;
|
|
|
|
|
|
|
|
typedef struct voc_voice_data {
|
2023-10-17 13:44:03 +02:00
|
|
|
uint8_t tc;
|
|
|
|
uint8_t pack;
|
1998-08-13 17:43:39 +02:00
|
|
|
} VocVoiceData;
|
|
|
|
|
|
|
|
typedef struct voc_ext_block {
|
2023-10-17 13:44:03 +02:00
|
|
|
uint16_t tc;
|
|
|
|
uint8_t pack;
|
|
|
|
uint8_t mode;
|
1998-08-13 17:43:39 +02:00
|
|
|
} VocExtBlock;
|
|
|
|
|
|
|
|
/* Definitions for Microsoft WAVE format */
|
|
|
|
|
2001-08-22 13:00:07 +02:00
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
2000-05-16 12:46:11 +02:00
|
|
|
#define COMPOSE_ID(a,b,c,d) ((a) | ((b)<<8) | ((c)<<16) | ((d)<<24))
|
|
|
|
#define LE_SHORT(v) (v)
|
|
|
|
#define LE_INT(v) (v)
|
2000-06-01 13:37:43 +02:00
|
|
|
#define BE_SHORT(v) bswap_16(v)
|
|
|
|
#define BE_INT(v) bswap_32(v)
|
2001-08-22 13:00:07 +02:00
|
|
|
#elif __BYTE_ORDER == __BIG_ENDIAN
|
2000-05-16 12:46:11 +02:00
|
|
|
#define COMPOSE_ID(a,b,c,d) ((d) | ((c)<<8) | ((b)<<16) | ((a)<<24))
|
|
|
|
#define LE_SHORT(v) bswap_16(v)
|
|
|
|
#define LE_INT(v) bswap_32(v)
|
2000-06-01 13:37:43 +02:00
|
|
|
#define BE_SHORT(v) (v)
|
|
|
|
#define BE_INT(v) (v)
|
2001-08-22 13:00:07 +02:00
|
|
|
#else
|
|
|
|
#error "Wrong endian"
|
2000-05-16 12:46:11 +02:00
|
|
|
#endif
|
|
|
|
|
2012-12-13 10:53:19 +01:00
|
|
|
/* Note: the following macros evaluate the parameter v twice */
|
|
|
|
#define TO_CPU_SHORT(v, be) \
|
|
|
|
((be) ? BE_SHORT(v) : LE_SHORT(v))
|
|
|
|
#define TO_CPU_INT(v, be) \
|
|
|
|
((be) ? BE_INT(v) : LE_INT(v))
|
|
|
|
|
2000-05-16 12:46:11 +02:00
|
|
|
#define WAV_RIFF COMPOSE_ID('R','I','F','F')
|
2012-12-13 10:53:19 +01:00
|
|
|
#define WAV_RIFX COMPOSE_ID('R','I','F','X')
|
2000-05-16 12:46:11 +02:00
|
|
|
#define WAV_WAVE COMPOSE_ID('W','A','V','E')
|
|
|
|
#define WAV_FMT COMPOSE_ID('f','m','t',' ')
|
|
|
|
#define WAV_DATA COMPOSE_ID('d','a','t','a')
|
2008-02-06 14:05:07 +01:00
|
|
|
|
|
|
|
/* WAVE fmt block constants from Microsoft mmreg.h header */
|
|
|
|
#define WAV_FMT_PCM 0x0001
|
|
|
|
#define WAV_FMT_IEEE_FLOAT 0x0003
|
|
|
|
#define WAV_FMT_DOLBY_AC3_SPDIF 0x0092
|
2008-03-06 17:34:21 +01:00
|
|
|
#define WAV_FMT_EXTENSIBLE 0xfffe
|
|
|
|
|
|
|
|
/* Used with WAV_FMT_EXTENSIBLE format */
|
|
|
|
#define WAV_GUID_TAG "\x00\x00\x00\x00\x10\x00\x80\x00\x00\xAA\x00\x38\x9B\x71"
|
1998-08-13 17:43:39 +02:00
|
|
|
|
|
|
|
/* it's in chunks like .voc and AMIGA iff, but my source say there
|
|
|
|
are in only in this combination, so I combined them in one header;
|
|
|
|
it works on all WAVE-file I have
|
1998-11-27 16:17:45 +01:00
|
|
|
*/
|
2000-05-29 20:54:23 +02:00
|
|
|
typedef struct {
|
2023-10-17 13:44:03 +02:00
|
|
|
uint32_t magic; /* 'RIFF' */
|
|
|
|
uint32_t length; /* filelen */
|
|
|
|
uint32_t type; /* 'WAVE' */
|
2000-05-29 20:54:23 +02:00
|
|
|
} WaveHeader;
|
1998-11-27 16:17:45 +01:00
|
|
|
|
2000-05-29 20:54:23 +02:00
|
|
|
typedef struct {
|
2023-10-17 13:44:03 +02:00
|
|
|
uint16_t format; /* see WAV_FMT_* */
|
|
|
|
uint16_t channels;
|
|
|
|
uint32_t sample_fq; /* frequence of sample */
|
|
|
|
uint32_t byte_p_sec;
|
|
|
|
uint16_t byte_p_spl; /* samplesize; 1 or 2 bytes */
|
|
|
|
uint16_t bit_p_spl; /* 8, 12 or 16 bit */
|
2000-09-04 11:18:13 +02:00
|
|
|
} WaveFmtBody;
|
1998-11-27 16:17:45 +01:00
|
|
|
|
2008-03-06 17:34:21 +01:00
|
|
|
typedef struct {
|
|
|
|
WaveFmtBody format;
|
2023-10-17 13:44:03 +02:00
|
|
|
uint16_t ext_size;
|
|
|
|
uint16_t bit_p_spl;
|
|
|
|
uint32_t channel_mask;
|
|
|
|
uint16_t guid_format; /* WAV_FMT_* */
|
|
|
|
uint8_t guid_tag[14]; /* WAV_GUID_TAG */
|
2008-03-06 17:34:21 +01:00
|
|
|
} WaveFmtExtensibleBody;
|
|
|
|
|
2000-05-29 20:54:23 +02:00
|
|
|
typedef struct {
|
2023-10-17 13:44:03 +02:00
|
|
|
uint32_t type; /* 'data' */
|
|
|
|
uint32_t length; /* samplecount */
|
2000-05-29 20:54:23 +02:00
|
|
|
} WaveChunkHeader;
|
1998-08-13 17:43:39 +02:00
|
|
|
|
|
|
|
/* Definitions for Sparc .au header */
|
|
|
|
|
2000-06-01 13:37:43 +02:00
|
|
|
#define AU_MAGIC COMPOSE_ID('.','s','n','d')
|
1998-08-13 17:43:39 +02:00
|
|
|
|
|
|
|
#define AU_FMT_ULAW 1
|
|
|
|
#define AU_FMT_LIN8 2
|
|
|
|
#define AU_FMT_LIN16 3
|
|
|
|
|
|
|
|
typedef struct au_header {
|
2023-10-17 13:44:03 +02:00
|
|
|
uint32_t magic; /* '.snd' */
|
|
|
|
uint32_t hdr_size; /* size of header (min 24) */
|
|
|
|
uint32_t data_size; /* size of data */
|
|
|
|
uint32_t encoding; /* see to AU_FMT_XXXX */
|
|
|
|
uint32_t sample_rate; /* sample rate */
|
|
|
|
uint32_t channels; /* number of channels (voices) */
|
1998-08-13 17:43:39 +02:00
|
|
|
} AuHeader;
|
|
|
|
|
1998-11-27 16:17:45 +01:00
|
|
|
#endif /* FORMATS */
|