X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=wavpack.git;a=blobdiff_plain;f=Codec%2FAudio%2FWavPack%2FDecorrelation.hs;h=5fc22f073a0a4ba7b20ce880352552c8a544074a;hp=b72909fd3b0162e46d59f1e073a2ed4942d207b3;hb=5bf7c1be1cfce7ef8764ca3fbc34e8ef9bcf5037;hpb=79fe8094594b6b25d7d9c44bc128418d69f1da95 diff --git a/Codec/Audio/WavPack/Decorrelation.hs b/Codec/Audio/WavPack/Decorrelation.hs index b72909f..5fc22f0 100644 --- a/Codec/Audio/WavPack/Decorrelation.hs +++ b/Codec/Audio/WavPack/Decorrelation.hs @@ -17,16 +17,16 @@ maxTerm = 8 -- | FIXME data DecorrPass = DecorrPass { - -- | The decorrelation term: (term /= 0) && ((-3 <= term <= 8) - -- || (term == 17) || (term <= 18)) + -- | The decorrelation term: @(term /= 0) && ((-3 <= term <= 8) + -- || (term == 17) || (term <= 18))@ dpTerm ∷ !Int8 - -- | The decorrelation delta: 0 <= delta <= 8 + -- | The decorrelation delta: @0 <= delta <= 8@ , dpDelta ∷ !Int8 - -- | The decorrelation weight for channel A: -1024 <= weight <= - -- 1024 + -- | The decorrelation weight for channel A: @-1024 <= weight <= + -- 1024@ , dpWeightA ∷ !Int16 - -- | The decorrelation weight for channel B: -1024 <= weight <= - -- 1024 + -- | The decorrelation weight for channel B: @-1024 <= weight <= + -- 1024@ , dpWeightB ∷ !Int16 -- | The decorrelation samples for channel A. , dpSamplesA ∷ !(UV.Vector Int32)