Merge branch 'master' into next
[paraslash.git] / ggo / alsa_write.m4
1 include(header.m4)
2
3 <qu>
4 option "device" d
5 #~~~~~~~~~~~~~~~~
6 "set PCM device"
7 string typestr="device"
8 default="default"
9 optional
10 details="
11         On systems with dmix, a better choice than the default
12         value might be to use \"plug:swmix\".
13 "
14
15 option "channels" c
16 #~~~~~~~~~~~~~~~~~~
17 "specify number of channels"
18 int typestr="num"
19 default="2"
20 optional
21 details="
22         This option is only necessary for playing raw audio with
23         para_write.  In all other cases (plaing wav files with
24         para_write or using this writer with para_audiod), the number
25         of channels will be obtained from other resources.
26 "
27
28 option "samplerate" s
29 #~~~~~~~~~~~~~~~~~~~~~
30 "force given sample rate"
31 int typestr="num"
32 default="44100"
33 optional
34 details="
35         Again, it is only necessary to specify this when playing raw
36         audio with para_write.
37 "
38 </qu>