LMMS
Loading...
Searching...
No Matches
plugins
LadspaEffect
swh
ladspa
util
buffer.h
Go to the documentation of this file.
1
#ifndef _BUFFER_H
2
#define _BUFFER_H
3
4
/* subtract buffer b from a, save in c
5
*
6
* this could be sped up by vector operations
7
*/
8
9
static
inline
void
buffer_sub
(
const
float
*
a
,
const
float
*
b
,
float
*
c
,
int
cnt) {
10
int
i
;
11
for
(
i
=0;
i
<cnt;++
i
)
12
*
c
++ = *
a
++ - *
b
++;
13
}
14
15
#endif
a
uint8_t a
Definition
Spc_Cpu.h:141
i
register unsigned i
Definition
inflate.c:1575
buffer_sub
static void buffer_sub(const float *a, const float *b, float *c, int cnt)
Definition
buffer.h:9
c
return c
Definition
crypt.c:175
b
b
Definition
crypt.c:628
Generated on
for LMMS by
1.16.1