write: Make wav-related config options modular.
[paraslash.git] / m4 / gengetopt / prebuffer_filter.m4
1 option "duration" d
2 #~~~~~~~~~~~~~~~~~~
3 "prebuffer time"
4 int typestr="milliseconds"
5 default="200"
6 optional
7 details="
8         Wait that many milliseconds before letting data go through.
9         The time interval starts when the first data byte is seen by
10         this filter.
11 "
12
13 option "size" s
14 #~~~~~~~~~~~~~~
15 "amount of data to prebuffer"
16 int typestr="bytes"
17 default="0"
18 optional
19 details="
20         Wait until that many data bytes are available in the input buffer.
21         The default value of zero means to not prebuffer by size at all.
22         If both --duration and --size options are given and non-zero, the
23         filter waits until both conditions are met.
24 "