sl.c
4.78 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*====================================================================
* sl.c
*
* Synopsis:
* Sound library global routines
*
* Copyright 1993, Silicon Graphics, Inc.
* All Rights Reserved.
*
* This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics,
* Inc.; the contents of this file may not be disclosed to third
* parties, copied or duplicated in any form, in whole or in part,
* without the prior written permission of Silicon Graphics, Inc.
*
* RESTRICTED RIGHTS LEGEND:
* Use, duplication or disclosure by the Government is subject to
* restrictions as set forth in subdivision (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS
* 252.227-7013, and/or in similar or successor clauses in the FAR,
* DOD or NASA FAR Supplement. Unpublished - rights reserved under the
* Copyright Laws of the United States.
*====================================================================*/
#include <libaudio.h>
ALGlobals *slg=0;
void alErrFunc(ALError type, char *msg);
void alInit(ALGlobals *g, ALSynConfig *c)
{
if (!slg) { /* already initialized? */
slg = g;
alSynNew(&slg->drvr, c);
slg->errFunc = alErrFunc;
}
}
void alClose(ALGlobals *glob)
{
alSynDelete(&glob->drvr);
slg = 0;
}
/* might want to make these macros */
void alLink(ALLink *a, ALLink *b)
{
ALLink *ln = (ALLink *) a;
ALLink *to = (ALLink *) b;
ln->next = to->next;
ln->prev = to;
if (to->next)
to->next->prev = ln;
to->next = ln;
}
void alUnlink(ALLink *a)
{
ALLink *ln = (ALLink *) a;
if (ln->next)
ln->next->prev = ln->prev;
if (ln->prev)
ln->prev->next = ln->next;
}
void alCopy(void *src, void *dest, int len)
{
int i;
char *s = (char *)src;
char *d = (char *)dest;
for (i = 0; i < len; i++){
*d++ = *s++;
}
}
/***********************************************************************
Heap Stuff
***********************************************************************/
typedef struct {
int magic; /* check structure integrety */
int size; /* size of this allocated block */
char *file; /* file that this alloc was called from */
int line; /* line that it was called from */
int count; /* heap call number */
int pad;
} HeapInfo;
void alHeapInit(ALHeap *hp, char *base, int len)
{
hp->base = base;
hp->len = len;
hp->cur = base;
hp->count = 0;
}
void *alHeapDBAlloc(char *file, int line, ALHeap *hp, int num, int size)
{
int bytes;
char *ptr = 0;
bytes = (num*size +7) & ~7;
#ifdef AL_DEBUG
alHeapCheck(hp);
hp->count++;
bytes += sizeof(HeapInfo);
#endif
if ((hp->cur + bytes) <= (hp->base + hp->len)) {
ptr = hp->cur;
hp->cur += bytes;
#ifdef AL_DEBUG
((HeapInfo *)ptr)->magic = AL_HEAP_MAGIC;
((HeapInfo *)ptr)->size = bytes;
((HeapInfo *)ptr)->count = hp->count;
if (file) {
((HeapInfo *)ptr)->file = file;
((HeapInfo *)ptr)->line = line;
} else {
((HeapInfo *)ptr)->file = "unknown";
((HeapInfo *)ptr)->line = 0;
}
ptr += sizeof(HeapInfo);
#endif
} else {
emPrintf("alHeapAlloc: file %s, line %d can't allocate %d bytes\n",
file, line, size);
emPrintf(" : need %d bytes\n",
(hp->cur + bytes - hp->base - hp->len));
}
return ptr;
}
int alHeapSize(int num, int size)
{
int bytes = num*size;
#ifdef AL_DEBUG
bytes += sizeof(HeapInfo);
#endif
return bytes;
}
int alHeapCheck(ALHeap *hp)
{
int rv = 0;
HeapInfo *hi;
HeapInfo *last = 0;
char *ptr;
#ifdef AL_DEBUG
for (ptr = hp->base; ptr < hp->cur; ptr += hi->size){
hi = (HeapInfo *)ptr;
if ( hi->magic != AL_HEAP_MAGIC) {
emPrintf("warning: ---------- heap corrupted ----------\n");
if (last) {
emPrintf("this *PROBABLY* occurred at %d calls to \n",
last->count);
emPrintf("alHeapAlloc, file %s, line %d \n", last->file,
last->line);
} else {
emPrintf("the first block is bad\n");
}
rv = 1;
return rv;
}
last = hi;
}
#endif
return rv;
}
void alErrFunc(ALError type, char *msg)
{
if (msg) {
emPrintf("audio error: %d %s\n", type, msg);
} else {
emPrintf("audio error: %d\n", type);
}
}