Simple ring modulator (silly_effect)
[aftubes.git] / aformat.h
blob31d759e5799a0ae6d5598b0b921dc3e6895fc5cb
1 #ifndef AFORMAT_H
2 #define AFORMAT_H
4 struct aformat {
5 int srate; // sample rate
6 int bits; // number of bits per sample
7 int channels; // number of channels
8 };
10 int aformat_get_sample_size(struct aformat *af);
12 #endif