-
Notifications
You must be signed in to change notification settings - Fork 31
/
effect.h
80 lines (71 loc) · 3.03 KB
/
effect.h
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
/*
* This file is part of dsp.
*
* Copyright (c) 2013-2024 Michael Barbour <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef DSP_EFFECT_H
#define DSP_EFFECT_H
#include "dsp.h"
struct effect_info {
const char *name;
const char *usage;
struct effect * (*init)(const struct effect_info *, const struct stream_info *, const char *, const char *, int, const char *const *);
int effect_number;
};
enum {
PLOT_INFO_MIX = 1<<0,
};
struct effect {
struct effect *next;
const char *name;
struct stream_info istream, ostream;
char *channel_selector; /* for use *only* by the effect */
int plot_info;
/* All functions may be NULL */
sample_t * (*run)(struct effect *, ssize_t *, sample_t *, sample_t *); /* if NULL, the effect will not be used */
ssize_t (*delay)(struct effect *); /* returns the latency in frames at ostream.fs */
void (*reset)(struct effect *);
void (*signal)(struct effect *);
void (*plot)(struct effect *, int);
void (*drain)(struct effect *, ssize_t *, sample_t *);
void (*destroy)(struct effect *);
void *data;
};
struct effects_chain {
struct effect *head;
struct effect *tail;
};
#define EFFECTS_CHAIN_INITIALIZER ((struct effects_chain) { NULL, NULL })
#define IS_EFFECTS_CHAIN_START(x) ( \
get_effect_info(x) != NULL \
|| (x)[0] == ':' \
|| (x)[0] == '@' \
|| ((x)[0] == '!' && (x)[1] == '\0') )
const struct effect_info * get_effect_info(const char *);
void destroy_effect(struct effect *);
void append_effect(struct effects_chain *, struct effect *);
int build_effects_chain(int, const char *const *, struct effects_chain *, struct stream_info *, const char *, const char *);
int build_effects_chain_from_file(struct effects_chain *, struct stream_info *, const char *, const char *, const char *);
ssize_t get_effects_chain_buffer_len(struct effects_chain *, ssize_t, int);
ssize_t get_effects_chain_max_out_frames(struct effects_chain *, ssize_t);
sample_t * run_effects_chain(struct effect *, ssize_t *, sample_t *, sample_t *);
double get_effects_chain_delay(struct effects_chain *);
void reset_effects_chain(struct effects_chain *);
void signal_effects_chain(struct effects_chain *);
void plot_effects_chain(struct effects_chain *, int);
sample_t * drain_effects_chain(struct effects_chain *, ssize_t *, sample_t *, sample_t *);
void destroy_effects_chain(struct effects_chain *);
void print_all_effects(void);
#endif