blob: d0fe4e3474a4efdca9980255f41a0900cbf3bed6 (
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
|
#include <assert.h>
#include <float.h>
#include "sig.h"
typedef struct ops_div_ctxt_t {
sig_t *a, *b;
} ops_div_ctxt_t;
static size_t ops_div_size(va_list ap)
{
return sizeof(ops_div_ctxt_t);
}
static void ops_div_init(void *context, va_list ap)
{
ops_div_ctxt_t *ctxt = context;
assert(ctxt);
ctxt->a = va_arg(ap, sig_t *);
ctxt->b = va_arg(ap, sig_t *);
}
static void ops_div_destroy(void *context)
{
ops_div_ctxt_t *ctxt = context;
assert(ctxt);
sig_free(ctxt->a);
sig_free(ctxt->b);
}
static float ops_div_output(void *context, unsigned ticks_ms)
{
ops_div_ctxt_t *ctxt = context;
float divisor;
assert(ctxt);
/* XXX: protect against divide by zero by replacing with epsilon */
divisor = sig_output(ctxt->b, ticks_ms);
if (divisor == 0.f)
divisor = FLT_EPSILON;
return sig_output(ctxt->a, ticks_ms) / divisor;
}
sig_ops_t sig_ops_div = {
.size = ops_div_size,
.init = ops_div_init,
.destroy = ops_div_destroy,
.output = ops_div_output,
};
|