author | unc0rr |
Fri, 16 Oct 2009 19:52:42 +0000 | |
changeset 2503 | 74e78d7b39fe |
parent 2444 | ace11b7d8eab |
child 2529 | 51e5df1c8462 |
permissions | -rw-r--r-- |
2191 | 1 |
/* |
2 |
* OpenAL Bridge - a simple portable library for OpenAL interface |
|
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2421
diff
changeset
|
3 |
* Copyright (c) 2009 Vittorio Giovara <vittorio.giovara@gmail.com>, |
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2421
diff
changeset
|
4 |
* Mario Liebisch <mario.liebisch+hw@googlemail.com> |
2191 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
2257
7eb31efcfb9b
updates licence and fix a memory leak (which was consuming iphone memory)
koda
parents:
2213
diff
changeset
|
7 |
* it under the terms of the GNU Lesser General Public License as published by |
2191 | 8 |
* the Free Software Foundation; version 2 of the License |
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
2257
7eb31efcfb9b
updates licence and fix a memory leak (which was consuming iphone memory)
koda
parents:
2213
diff
changeset
|
13 |
* GNU Lesser General Public License for more details. |
2191 | 14 |
* |
2257
7eb31efcfb9b
updates licence and fix a memory leak (which was consuming iphone memory)
koda
parents:
2213
diff
changeset
|
15 |
* You should have received a copy of the GNU Lesser General Public License |
2191 | 16 |
* along with this program; if not, write to the Free Software |
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
19 |
|
2213 | 20 |
#ifndef _OALB_LOADERS_H |
21 |
#define _OALB_LOADERS_H |
|
22 |
||
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2421
diff
changeset
|
23 |
#include "common.h" |
2213 | 24 |
#include "wrappers.h" |
25 |
#include "oggvorbis.h" |
|
2444 | 26 |
|
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2421
diff
changeset
|
27 |
extern char *prog; |
2191 | 28 |
|
2444 | 29 |
int load_wavpcm (const char *filename, ALenum *format, char **data, ALsizei *bitsize, ALsizei *freq); |
30 |
int load_oggvorbis (const char *filename, ALenum *format, char **data, ALsizei *bitsize, ALsizei *freq); |
|
2213 | 31 |
|
32 |
#endif /*_OALB_LOADERS_H*/ |