Added mixer module.
[aftubes.git] / modules.h
blobb066edb4b0543c4eb0b9d92dce201ec392798c5f
1 #ifndef MODULES_H
2 #define MODULES_H
4 #include "graph.h"
5 #include "errors.h"
7 err_t wavesource_create(struct graphnode **node_out, const char *filename);
8 err_t playsink_create(struct graphnode **node_out);
9 err_t ringmod_create(struct graphnode **node_out);
10 err_t audio_converter_create(struct graphnode **node_out, struct aformat *src_af, struct aformat *dest_af);
11 err_t mixer_create(struct graphnode **node_out, int n_inputs);
13 #endif