blob: 09f5197a5a77f106597921a0699c137eb48b40df (
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
|
#include <assert.h>
#include "sig.h"
typedef struct ops_const_ctxt_t {
float value;
} ops_const_ctxt_t;
static size_t ops_const_size(va_list ap)
{
return sizeof(ops_const_ctxt_t);
}
static void ops_const_init(void *context, va_list ap)
{
ops_const_ctxt_t *ctxt = context;
assert(ctxt);
ctxt->value = va_arg(ap, double);
}
static float ops_const_output(void *context, unsigned ticks_ms)
{
ops_const_ctxt_t *ctxt = context;
assert(ctxt);
return ctxt->value;
}
sig_ops_t sig_ops_const = {
.size = ops_const_size,
.init = ops_const_init,
.output = ops_const_output,
};
|