blob: 4e600da44f9eb3aac652e73b57185054adfd3684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifndef _XAS_RIFF_H
#define _XAS_RIFF_H
#include <stdint.h>
#include <sys/types.h>
#include <xas/audio.h>
#define XAS_RIFF_WAVE_DEFAULT_TYPE 1
#pragma pack(1)
#pragma pack(push)
typedef struct _xas_riff_chunk {
char id[4];
uint32_t size;
} xas_riff_chunk;
typedef struct _xas_riff_main_chunk {
xas_riff_chunk header;
char type[4];
} xas_riff_main_chunk;
typedef struct _xas_riff_wave_chunk {
xas_riff_chunk header;
uint16_t type,
channels;
uint32_t sample_rate,
byte_rate;
uint16_t sample_size,
sample_size_bits;
} xas_riff_wave_chunk;
typedef struct _xas_riff_wave_header {
xas_riff_main_chunk riff;
xas_riff_wave_chunk wave;
xas_riff_chunk data;
} xas_riff_wave_header;
typedef struct _xas_riff xas_riff;
#pragma pack(pop)
xas_audio_stream *xas_riff_file_open(const char *path,
size_t sample_size,
size_t sample_rate,
size_t channels,
int flags);
#endif /* _XAS_RIFF_H */
|