Changeset 429

Show
Ignore:
Timestamp:
06/30/03 10:58:00 (7 years ago)
Author:
joq
Message:

0.72.6 add --dither=none option

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jack/configure.in

    r421 r429  
    1515JACK_MAJOR_VERSION=0 
    1616JACK_MINOR_VERSION=72 
    17 JACK_MICRO_VERSION=5 
     17JACK_MICRO_VERSION=6 
    1818 
    1919dnl --- 
  • trunk/jack/drivers/alsa/alsa_driver.c

    r418 r429  
    17091709"    -m,--monitor \tprovide monitor ports for the output (default: off)\n" 
    17101710"    -z,--dither  \tdithering mode:\n" 
    1711 "        -z-,--dither (off, the default)\n" 
     1711"        -zn,--dither=none (off, the default)\n" 
    17121712"        -zr,--dither=rectangular\n" 
    17131713"        -zs,--dither=shaped\n" 
     
    17281728        switch (*optarg) { 
    17291729        case '-': 
     1730        case 'n': 
    17301731                *dither = None; 
    17311732                break; 
  • trunk/jack/jackd/jackd.1.in

    r376 r429  
    1 .TH JACKD "1" @VERSION@ "May 2003" 
     1.TH JACKD "1" @VERSION@ "June 2003" 
    22.SH NAME 
    33jackd, jackstart \- JACK Audio Connection Kit sound server 
     
    147147\fB\-\-realtime\fR. 
    148148.TP 
    149 \fB\-z, --dither [rectangular,triangular,shaped,-
    150 Set dithering mode.  If \fB\-\fR or unspecified, dithering is off. 
     149\fB\-z, --dither [rectangular,triangular,shaped,none
     150Set dithering mode.  If \fBnone\fR or unspecified, dithering is off. 
    151151Only the first letter of the mode name is required. 
    152152.SH EXAMPLES