summaryrefslogtreecommitdiffstats
path: root/arm-fm-22k/host_src/eas_wave.h
blob: ca388f5b9b3187ae5601023874ab3449364b8241 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*----------------------------------------------------------------------------
 *
 * File: 
 * eas_wave.h
 *
 * Contents and purpose:
 * Writes output to a .WAV file
 *			
 * DO NOT MODIFY THIS FILE!
 *
 * Copyright Sonic Network Inc. 2005

 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *----------------------------------------------------------------------------
 * Revision Control:
 *   $Revision: 82 $
 *   $Date: 2006-07-10 11:45:19 -0700 (Mon, 10 Jul 2006) $
 *----------------------------------------------------------------------------
*/

#include "eas_types.h"

/* sentinel */
#ifndef _EAS_WAVE_H
#define _EAS_WAVE_H

/* .WAV file format chunk */
typedef struct {
	EAS_U16 wFormatTag;
	EAS_U16 nChannels;
	EAS_U32 nSamplesPerSec;
	EAS_U32 nAvgBytesPerSec;
	EAS_U16 nBlockAlign;
	EAS_U16 wBitsPerSample;
} FMT_CHUNK;

/* .WAV file header */
typedef struct {
	EAS_U32 nRiffTag;
	EAS_U32 nRiffSize;
	EAS_U32 nWaveTag;
	EAS_U32 nFmtTag;
	EAS_U32 nFmtSize;
	FMT_CHUNK fc;
	EAS_U32 nDataTag;
	EAS_U32 nDataSize;
} WAVE_HEADER;

typedef struct {
	WAVE_HEADER wh;
	FILE *file;
	EAS_BOOL write;
	EAS_U32 dataSize;
} WAVE_FILE;

WAVE_FILE *WaveFileCreate (const char *filename, EAS_I32 nChannels, EAS_I32 nSamplesPerSec, EAS_I32 wBitsPerSample);
EAS_I32 WaveFileWrite (WAVE_FILE *wFile, void *buffer, EAS_I32 n);
EAS_BOOL WaveFileClose (WAVE_FILE *wFile);
WAVE_FILE *WaveFileOpen (const char *filename);

#endif /* end #ifndef _EAS_WAVE_H */