shithub: sox

Download patch

ref: 68b47e5337bc7f1f9377a652130f21b01a5f2cf0
parent: a10dec3adc5003873410a2a9322f0283b13dceba
author: robs <robs>
date: Sun Mar 22 12:00:16 EDT 2009

updates

--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,7 @@
   14.1.0   E resample *            ~= rate
   14.1.0   E polyphase *           ~= rate
   14.1.0   E rabbit *              ~= rate
+  14.2.0   E dither: RPDF,scaled   dither (TPDF only)
   14.1.0   F flac: libFLAC 1.1.1   libFLAC > 1.1.1
 
   * But interface retained as an alias for `rate'.
--- a/src/dither.c
+++ b/src/dither.c
@@ -114,7 +114,7 @@
 };
 
 static const filter_t filters[] = {
-  {44100, fir,  5, 209, lip44, Shape_lipshitz},
+  {44100, fir,  5, 210, lip44, Shape_lipshitz},
   {46000, fir,  9, 270, fwe44, Shape_f_weighted},
   {46000, fir,  9, 159, mew44, Shape_modified_e_weighted},
   {46000, fir,  9, 320, iew44, Shape_improved_e_weighted},
@@ -122,10 +122,11 @@
   {44100, iir,  4, 228, ges44, Shape_gesemann},
   {48000, fir, 16, 300, shi48, Shape_shibata},
   {44100, fir, 20, 330, shi44, Shape_shibata},
-  {37800, fir, 16, 237, shi38, Shape_shibata},
+  {37800, fir, 16, 238, shi38, Shape_shibata},
   {48000, fir, 16, 245, shl48, Shape_low_shibata},
   {44100, fir, 15, 246, shl44, Shape_low_shibata},
   {44100, fir, 20, 382, shh44, Shape_high_shibata},
+  {    0, fir,  0,   0,  NULL, Shape_none},
 };
 
 #define MAX_N 20