]> git.tuebingen.mpg.de Git - paraslash.git/blob - m4/gengetopt/prebuffer_filter.m4
Build receivers, filters and writers without -h and -V support.
[paraslash.git] / m4 / gengetopt / prebuffer_filter.m4
1 args "--no-version --no-help"
2
3 option "duration" d
4 #~~~~~~~~~~~~~~~~~~
5 "prebuffer time"
6 int typestr="milliseconds"
7 default="200"
8 optional
9 details="
10         Wait that many milliseconds before letting data go through.
11         The time interval starts when the first data byte is seen by
12         this filter.
13 "
14
15 option "size" s
16 #~~~~~~~~~~~~~~
17 "amount of data to prebuffer"
18 int typestr="bytes"
19 default="0"
20 optional
21 details="
22         Wait until that many data bytes are available in the input buffer.
23         The default value of zero means to not prebuffer by size at all.
24         If both --duration and --size options are given and non-zero, the
25         filter waits until both conditions are met.
26 "