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