rm unused preprocessor checks
[libpicofe.git] / linux / sndout_oss.h
... / ...
CommitLineData
1int sndout_oss_init(void);
2int sndout_oss_start(int rate, int stereo);
3void sndout_oss_stop(void);
4int sndout_oss_write(const void *buff, int len);
5int sndout_oss_write_nb(const void *buff, int len);
6int sndout_oss_can_write(int bytes);
7void sndout_oss_wait(void);
8void sndout_oss_setvol(int l, int r);
9void sndout_oss_exit(void);
10
11/* make oss fragment size to fit this much video frames */
12extern int sndout_oss_frag_frames;