author | koda |
Sun, 11 Oct 2009 16:03:56 +0000 | |
changeset 2415 | 35d09cbf819a |
parent 2261 | 57e99c908e7c |
child 2417 | f7ed1ea25050 |
permissions | -rw-r--r-- |
2212 | 1 |
/* |
2 |
* OpenAL Bridge - a simple portable library for OpenAL interface |
|
3 |
* Copyright (c) 2009 Vittorio Giovara <vittorio.giovara@gmail.com> |
|
4 |
* |
|
5 |
* 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:
2216
diff
changeset
|
6 |
* it under the terms of the GNU Lesser General Public License as published by |
2212 | 7 |
* the Free Software Foundation; version 2 of the License |
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* 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:
2216
diff
changeset
|
12 |
* GNU Lesser General Public License for more details. |
2212 | 13 |
* |
2257
7eb31efcfb9b
updates licence and fix a memory leak (which was consuming iphone memory)
koda
parents:
2216
diff
changeset
|
14 |
* You should have received a copy of the GNU Lesser General Public License |
2212 | 15 |
* along with this program; if not, write to the Free Software |
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
2213 | 19 |
#ifndef _OALB_GLOBALS_H |
20 |
#define _OALB_GLOBALS_H |
|
2212 | 21 |
|
22 |
#include <stdio.h> |
|
23 |
#include <stdlib.h> |
|
2215 | 24 |
#include <stdint.h> |
2259 | 25 |
#include <string.h> |
2212 | 26 |
|
27 |
#ifndef _WIN32 |
|
28 |
#include <pthread.h> |
|
29 |
#else |
|
30 |
#include <process.h> |
|
31 |
#endif |
|
32 |
||
2213 | 33 |
#include "al.h" |
34 |
||
2415 | 35 |
|
36 |
/** 1.0 02/03/10 - Defines cross-platform sleep, usleep, etc. [Wu Yongwei] **/ |
|
2212 | 37 |
#ifndef _SLEEP_H |
38 |
#define _SLEEP_H |
|
39 |
#ifdef _WIN32 |
|
40 |
# if defined(_NEED_SLEEP_ONLY) && (defined(_MSC_VER) || defined(__MINGW32__)) |
|
41 |
# include <stdlib.h> |
|
42 |
# define sleep(t) _sleep((t) * 1000) |
|
43 |
# else |
|
2213 | 44 |
# define WIN32_LEAN_AND_MEAN |
2212 | 45 |
# include <windows.h> |
46 |
# define sleep(t) Sleep((t) * 1000) |
|
47 |
# endif |
|
48 |
# ifndef _NEED_SLEEP_ONLY |
|
49 |
# define msleep(t) Sleep(t) |
|
50 |
# define usleep(t) Sleep((t) / 1000) |
|
51 |
# endif |
|
52 |
#else |
|
53 |
# include <unistd.h> |
|
54 |
# ifndef _NEED_SLEEP_ONLY |
|
55 |
# define msleep(t) usleep((t) * 1000) |
|
56 |
# endif |
|
57 |
#endif |
|
58 |
#endif /* _SLEEP_H */ |
|
59 |
||
2415 | 60 |
|
61 |
||
2212 | 62 |
|
63 |
||
64 |
||
65 |
||
66 |
#ifdef __CPLUSPLUS |
|
67 |
extern "C" { |
|
68 |
#endif |
|
2415 | 69 |
|
70 |
/*data type for WAV header*/ |
|
2212 | 71 |
#pragma pack(1) |
2415 | 72 |
typedef struct _WAV_header_t { |
73 |
uint32_t ChunkID; |
|
74 |
uint32_t ChunkSize; |
|
75 |
uint32_t Format; |
|
76 |
uint32_t Subchunk1ID; |
|
77 |
uint32_t Subchunk1Size; |
|
78 |
uint16_t AudioFormat; |
|
79 |
uint16_t NumChannels; |
|
80 |
uint32_t SampleRate; |
|
81 |
uint32_t ByteRate; |
|
82 |
uint16_t BlockAlign; |
|
83 |
uint16_t BitsPerSample; |
|
84 |
uint32_t Subchunk2ID; |
|
85 |
uint32_t Subchunk2Size; |
|
86 |
} WAV_header_t; |
|
2212 | 87 |
#pragma pack() |
2415 | 88 |
|
89 |
/*data type for passing data between threads*/ |
|
2216
82e7da49c26a
-Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents:
2215
diff
changeset
|
90 |
#pragma pack(1) |
2415 | 91 |
typedef struct _fade_t { |
92 |
uint32_t index; |
|
93 |
uint16_t quantity; |
|
94 |
} fade_t; |
|
2216
82e7da49c26a
-Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents:
2215
diff
changeset
|
95 |
#pragma pack() |
2415 | 96 |
|
97 |
||
98 |
/*file format defines*/ |
|
99 |
#define OGG_FILE_FORMAT 0x4F676753 |
|
100 |
#define WAV_FILE_FORMAT 0x52494646 |
|
101 |
#define WAV_HEADER_SUBCHUNK2ID 0x64617461 |
|
102 |
||
103 |
||
104 |
/*other defines*/ |
|
105 |
#define FADE_IN 0 |
|
106 |
#define FADE_OUT 1 |
|
107 |
||
2212 | 108 |
#ifdef __CPLUSPLUS |
109 |
} |
|
110 |
#endif |
|
111 |
||
2213 | 112 |
#endif /*_OALB_GLOBALS_H*/ |