summaryrefslogtreecommitdiff
path: root/src/libs/sig/ops_abs.c
blob: e344c338b79d20a8715afdb58088bd5e6f0f6cd4 (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
#include <assert.h>
#include <math.h>

#include "sig.h"


typedef struct ops_abs_ctxt_t {
	sig_sig_t	*x;
} ops_abs_ctxt_t;


static size_t ops_abs_size(va_list ap)
{
	return sizeof(ops_abs_ctxt_t);
}


static void ops_abs_init(void *context, va_list ap)
{
	ops_abs_ctxt_t	*ctxt = context;

	assert(ctxt);

	ctxt->x = va_arg(ap, sig_sig_t *);
}


static void ops_abs_destroy(void *context)
{
	ops_abs_ctxt_t	*ctxt = context;

	assert(ctxt);

	sig_free(ctxt->x);
}


static float ops_abs_output(void *context, unsigned ticks_ms)
{
	ops_abs_ctxt_t	*ctxt = context;

	assert(ctxt);

	return fabsf(sig_output(ctxt->x, ticks_ms));
}


sig_ops_t	sig_ops_abs = {
	.size = ops_abs_size,
	.init = ops_abs_init,
	.destroy = ops_abs_destroy,
	.output = ops_abs_output,
};
© All Rights Reserved