Merge branch 'maint'
[paraslash.git] / ggo / oss_write.ggo
1 option "device" d
2 #~~~~~~~~~~~~~~~~
3 "set PCM device"
4 string typestr="device"
5 default="/dev/dsp"
6 optional
7
8 option "channels" c
9 #~~~~~~~~~~~~~~~~~~
10 "specify number of channels"
11 int typestr="num"
12 default="2"
13 optional
14 details="
15         This option is only necessary for playing raw audio with
16         para_write.  In all other cases (plaing wav files with
17         para_write or using this writer with para_audiod), the number
18         of channels will be obtained from other resources.
19 "
20
21 option "samplerate" s
22 #~~~~~~~~~~~~~~~~~~~~~
23 "force given sample rate"
24 int typestr="num"
25 default="44100"
26 optional
27 details="
28         Again, it is only necessary to specify this when playing raw
29         audio with para_write.
30 "