summaryrefslogtreecommitdiff
path: root/src/libs/sound/decoders/decoder.h
blob: 2d6983c9c54a7ac7a8f74fd5bdc071c8608b489f (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

/* Sound file decoder for .wav, .mod, .ogg
 * API is heavily influenced by SDL_sound.
 */

#ifndef DECODER_H
#define DECODER_H

#include "port.h"
#include "types.h"
#include "libs/uio.h"

#ifndef OVCODEC_NONE
#	ifdef _MSC_VER
#		pragma comment (lib, "vorbisfile.lib")
#	endif  /* _MSC_VER */
#endif  /* OVCODEC_NONE */

typedef struct tfb_decoderformats
{
	bool big_endian;
	bool want_big_endian;
	uint32 mono8;
	uint32 stereo8;
	uint32 mono16;
	uint32 stereo16;
} TFB_DecoderFormats;

// forward-declare
typedef struct tfb_sounddecoder TFB_SoundDecoder;

#define THIS_PTR TFB_SoundDecoder*

typedef struct tfb_sounddecoderfunc
{
	const char* (* GetName) (void);
	bool (* InitModule) (int flags, const TFB_DecoderFormats*);
	void (* TermModule) (void);
	uint32 (* GetStructSize) (void);
	int (* GetError) (THIS_PTR);
	bool (* Init) (THIS_PTR);
	void (* Term) (THIS_PTR);
	bool (* Open) (THIS_PTR, uio_DirHandle *dir, const char *filename);
	void (* Close) (THIS_PTR);
	int (* Decode) (THIS_PTR, void* buf, sint32 bufsize);
			// returns <0 on error, ==0 when no more data, >0 bytes returned
	uint32 (* Seek) (THIS_PTR, uint32 pcm_pos);
			// returns the pcm position set
	uint32 (* GetFrame) (THIS_PTR);

} TFB_SoundDecoderFuncs;

#undef THIS_PTR

struct tfb_sounddecoder
{
	// decoder virtual funcs - R/O
	const TFB_SoundDecoderFuncs *funcs;

	// public R/O, set by decoder
	uint32 format;
	uint32 frequency;
	float length; // total length in seconds
	bool is_null;
	bool need_swap;

	// public R/O, set by wrapper
	void *buffer;
	uint32 buffer_size;
	sint32 error;
	uint32 bytes_per_samp;

	// public R/W
	bool looping;

	// semi-private
	uio_DirHandle *dir;
	char *filename;
	uint32 pos;
	uint32 start_sample;
	uint32 end_sample;

};

// return values
enum
{
	SOUNDDECODER_OK,
	SOUNDDECODER_ERROR,
	SOUNDDECODER_EOF,
};

typedef struct TFB_RegSoundDecoder TFB_RegSoundDecoder;

TFB_RegSoundDecoder* SoundDecoder_Register (const char* fileext,
		TFB_SoundDecoderFuncs* decvtbl);
void SoundDecoder_Unregister (TFB_RegSoundDecoder* regdec);
const TFB_SoundDecoderFuncs* SoundDecoder_Lookup (const char* fileext);

void SoundDecoder_SwapWords (uint16* data, uint32 size);
sint32 SoundDecoder_Init (int flags, TFB_DecoderFormats* formats);
void SoundDecoder_Uninit (void);
TFB_SoundDecoder* SoundDecoder_Load (uio_DirHandle *dir,
		char *filename, uint32 buffer_size, uint32 startTime, sint32 runTime);
uint32 SoundDecoder_Decode (TFB_SoundDecoder *decoder);
uint32 SoundDecoder_DecodeAll (TFB_SoundDecoder *decoder);
float SoundDecoder_GetTime (TFB_SoundDecoder *decoder);
uint32 SoundDecoder_GetFrame (TFB_SoundDecoder *decoder);
void SoundDecoder_Seek (TFB_SoundDecoder *decoder, uint32 msecs);
void SoundDecoder_Rewind (TFB_SoundDecoder *decoder);
void SoundDecoder_Free (TFB_SoundDecoder *decoder);
const char* SoundDecoder_GetName (TFB_SoundDecoder *decoder);

#endif