Remove libasound dependency. We're using OSS.
[aftubes.git] / soundout.h
blob40a8a254a6cc502089a206ea2f9526b02540dcdc
1 #ifndef SOUNDOUT_H
2 #define SOUNDOUT_H
4 #include "aformat.h"
5 #include "stddef.h"
7 struct soundout {
8 int fd;
9 };
11 int soundout_open(struct soundout *so, struct aformat *af);
12 int soundout_write(struct soundout *so, void *buf, size_t len);
14 #endif