summaryrefslogtreecommitdiffstats
path: root/arm-wt-22k/lib_src/eas_wavefile.h
blob: f8814a8b11c156795595729281f5896408944d79 (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
/*----------------------------------------------------------------------------
 *
 * File:
 * eas_wavefile.h
 *
 * Contents and purpose:
 * Static data block for wave file parser.
 *
 * 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: 439 $
 *   $Date: 2006-10-26 11:53:18 -0700 (Thu, 26 Oct 2006) $
 *----------------------------------------------------------------------------
*/

#ifndef _EAS_WAVEFILE_H
#define _EAS_WAVEFILE_H

#include "eas_data.h"
#include "eas_pcm.h"

/*----------------------------------------------------------------------------
 *
 * S_WAVE_STATE
 *
 * This structure contains the WAVE file parser state information
 *----------------------------------------------------------------------------
*/
typedef struct s_wave_state_tag
{
    EAS_FILE_HANDLE fileHandle;
    EAS_PCM_HANDLE  streamHandle;
    S_METADATA_CB   metadata;
    EAS_U32         time;
    EAS_I32         fileOffset;
    EAS_I32         audioOffset;
    EAS_I32         mediaLength;
    EAS_U32         audioSize;
    EAS_U32         flags;
    EAS_I16         fileType;
#ifdef MMAPI_SUPPORT
    EAS_VOID_PTR    fmtChunk;
#endif
    EAS_I32         infoChunkPos;
    EAS_I32         infoChunkSize;
} S_WAVE_STATE;

#endif