Added automatic format conversion.
[aftubes.git] / modules.h
blob82518c22ba3db286d51fbad3b575233461d79950
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);
12 #endif