lc3-codec 0.2.0

An implementation of the LC3 audio codec for embedded systems (no_std)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
// Copyright 2022 David Haig
// Licensed under the Apache License, Version 2.0 (the "License");

// If the `alloc` feature is enabled (which it is by default) then the
// Lc3Encoder can be initialised dynamically (with variable inputs not known at compile time)
// However, if the `alloc` feature is not enabled (e.g. with `default-features = false`) then
// the Lc3Encoder will be initialised statically with constants like number of channels specified
// at compile time. This suits microcontroller environments.
// There should be no performance difference between using alloc and not because memory is preallocated
// before the encoder starts using it and the same memory gets used over and over again.

#[cfg(feature = "alloc")]
extern crate alloc;

use super::{
    attack_detector::AttackDetector, bandwidth_detector::BandwidthDetector, bitstream_encoding::BitstreamEncoding,
    long_term_post_filter::LongTermPostFilter, modified_dct::ModDiscreteCosTrans,
    noise_level_estimation::NoiseLevelEstimation, residual_spectrum::ResidualBitsEncoder,
    spectral_noise_shaping::SpectralNoiseShaping, spectral_quantization::SpectralQuantization,
    temporal_noise_shaping::TemporalNoiseShaping,
};
use crate::common::{
    complex::{Complex, Scaler},
    config::{FrameDuration, Lc3Config, SamplingFrequency},
};

/// Main entry point of library - Start here for the Encoder

#[derive(Debug)]
pub enum Lc3EncoderError {}

#[cfg(feature = "alloc")]
pub struct Lc3Encoder<'a> {
    channels: alloc::vec::Vec<EncoderChannel<'a>>,
}

#[cfg(not(feature = "alloc"))]
pub struct Lc3Encoder<'a, const NUM_CHANNELS: usize = 2> {
    channels: heapless::Vec<EncoderChannel<'a>, NUM_CHANNELS>,
}

struct EncoderChannel<'a> {
    config: Lc3Config,
    mdct: ModDiscreteCosTrans<'a>,
    bandwidth_detector: BandwidthDetector,
    attack_detector: AttackDetector,
    spectral_noise_shaping: SpectralNoiseShaping,
    temporal_noise_shaping: TemporalNoiseShaping,
    long_term_post_filter: LongTermPostFilter<'a>,
    spectral_quantization: SpectralQuantization,
    noise_level_estimation: NoiseLevelEstimation,
    bitstream_encoding: BitstreamEncoding,
    frame_index: usize,

    // scratch buffers used anew for every frame (data from previous frames in these buffers is overwritten)
    energy_bands: &'a mut [Scaler],
    mdct_out: &'a mut [Scaler],
    spec_quant_out: &'a mut [i16],
    residual: ResidualBitsEncoder,
}

impl<'a> EncoderChannel<'a> {
    pub fn encode(&mut self, x_s: &[i16], buf_out: &mut [u8]) -> Result<(), Lc3EncoderError> {
        self.frame_index += 1;
        let nbits = buf_out.len() * 8;

        // modified discrete cosine transform (mutates output and energy_bands)
        let near_nyquist_flag = self.mdct.run(x_s, self.mdct_out, self.energy_bands);

        // NOTE: the mdct above takes output[..nf] and transforms it to output[..ne] (e.g. 480 => 400)
        let (spec_lines, _) = self.mdct_out.split_at_mut(self.config.ne);

        // bandwidth detector
        let bandwidth = self.bandwidth_detector.run(self.energy_bands);

        // attack detector
        let attack_detected = self.attack_detector.run(x_s, buf_out.len());

        // spectral noise shaping
        let sns = self
            .spectral_noise_shaping
            .run(spec_lines, self.energy_bands, attack_detected);

        // temporal noise shaping
        let tns = self
            .temporal_noise_shaping
            .run(spec_lines, bandwidth.bandwidth_ind, nbits, near_nyquist_flag);

        // long term post filter - half the time spent here
        let post_filter = self.long_term_post_filter.run(x_s, near_nyquist_flag, nbits);

        // spectral quantization
        let spec = self.spectral_quantization.run(
            spec_lines, self.spec_quant_out, nbits, bandwidth.nbits_bandwidth, tns.nbits_tns, post_filter.nbits_ltpf,
        );

        // residual bits
        let residual_bits = self.residual.encode(
            spec.nbits_spec, spec.nbits_trunc, self.config.ne, spec.gg, spec_lines, self.spec_quant_out,
        );

        // noise level estimation
        let noise_factor = self.noise_level_estimation.calc_noise_factor(
            spec_lines, self.spec_quant_out, bandwidth.bandwidth_ind, spec.gg as Scaler,
        );

        self.bitstream_encoding.encode(
            bandwidth, sns, tns, post_filter, spec, residual_bits, noise_factor, self.spec_quant_out, buf_out,
        );

        Ok(())
    }
}

#[cfg(feature = "alloc")]
impl<'a> Lc3Encoder<'a> {
    pub fn new(
        num_channels: usize,
        frame_duration: FrameDuration,
        sampling_frequency: SamplingFrequency,
        integer_buf: &'a mut [i16],
        scaler_buf: &'a mut [Scaler],
        complex_buf: &'a mut [Complex],
    ) -> Self {
        let config = Lc3Config::new(sampling_frequency, frame_duration);
        let mut channels: alloc::vec::Vec<EncoderChannel<'a>> = alloc::vec::Vec::new();

        let mut integer_buf_save = integer_buf;
        let mut scaler_buf_save = scaler_buf;
        let mut complex_buf_save = complex_buf;

        for _ in 0..num_channels {
            let (mdct, integer_buf, complex_buf) = ModDiscreteCosTrans::new(config, integer_buf_save, complex_buf_save);
            let bandwidth_detector = BandwidthDetector::new(config.n_ms, config.fs_ind);
            let attack_detector = AttackDetector::new(config);
            let spectral_noise_shaping = SpectralNoiseShaping::new(config, mdct.get_i_fs());
            let temporal_noise_shaping = TemporalNoiseShaping::new(config);
            let (long_term_post_filter, scaler_buf, integer_buf) =
                LongTermPostFilter::new(config, scaler_buf_save, integer_buf);
            let spectral_quantization = SpectralQuantization::new(config.ne, config.fs_ind);
            let noise_level_estimation = NoiseLevelEstimation::new(config.n_ms, config.ne);
            let bitstream_encoding = BitstreamEncoding::new(config.ne);
            let (output, scaler_buf) = scaler_buf.split_at_mut(config.nf);
            let (energy_bands, scaler_buf) = scaler_buf.split_at_mut(config.nb);
            let residual = ResidualBitsEncoder::default();
            let (x_q, integer_buf) = integer_buf.split_at_mut(config.ne);

            let channel = EncoderChannel {
                mdct,
                bandwidth_detector,
                attack_detector,
                spectral_noise_shaping,
                temporal_noise_shaping,
                long_term_post_filter,
                spectral_quantization,
                noise_level_estimation,
                bitstream_encoding,
                frame_index: 0,
                mdct_out: output,
                energy_bands,
                residual,
                config,
                spec_quant_out: x_q,
            };

            channels.push(channel);
            integer_buf_save = integer_buf;
            scaler_buf_save = scaler_buf;
            complex_buf_save = complex_buf;
        }

        Self { channels }
    }

    pub fn encode_frame(
        &mut self,
        channel_index: usize,
        samples_in: &[i16],
        buf_out: &mut [u8],
    ) -> Result<(), Lc3EncoderError> {
        if channel_index < self.channels.len() {
            let channel = &mut self.channels[channel_index];
            channel.encode(samples_in, buf_out)
        } else {
            panic!(
                "Cannot decode channel index {} as config only specifies {} channels",
                channel_index,
                self.channels.len()
            );
        }
    }

    // (integer, scaler, complex)
    pub const fn calc_working_buffer_lengths(
        num_channels: usize,
        frame_duration: FrameDuration,
        sampling_frequency: SamplingFrequency,
    ) -> (usize, usize, usize) {
        let config = Lc3Config::new(sampling_frequency, frame_duration);
        let (mdct_integer_len, mdct_complex_len) = ModDiscreteCosTrans::calc_working_buffer_lengths(&config);
        let (ltpf_integer_len, ltpf_scaler_len) = LongTermPostFilter::calc_working_buffer_length(&config);
        let scaler_len = ltpf_scaler_len + config.nf + config.nb;
        let integer_len = mdct_integer_len + ltpf_integer_len + config.ne;
        (
            integer_len * num_channels,
            scaler_len * num_channels,
            mdct_complex_len * num_channels,
        )
    }
}

#[cfg(not(feature = "alloc"))]
impl<'a, const NUM_CHANNELS: usize> Lc3Encoder<'a, NUM_CHANNELS> {
    pub fn new(
        frame_duration: FrameDuration,
        sampling_frequency: SamplingFrequency,
        integer_buf: &'a mut [i16],
        scaler_buf: &'a mut [Scaler],
        complex_buf: &'a mut [Complex],
    ) -> Self {
        let config = Lc3Config::new(sampling_frequency, frame_duration);
        let mut channels: heapless::Vec<EncoderChannel<'a>, NUM_CHANNELS> = heapless::Vec::new();

        let mut integer_buf_save = integer_buf;
        let mut scaler_buf_save = scaler_buf;
        let mut complex_buf_save = complex_buf;

        for _ in 0..NUM_CHANNELS {
            let (mdct, integer_buf, complex_buf) = ModDiscreteCosTrans::new(config, integer_buf_save, complex_buf_save);
            let bandwidth_detector = BandwidthDetector::new(config.n_ms, config.fs_ind);
            let attack_detector = AttackDetector::new(config);
            let spectral_noise_shaping = SpectralNoiseShaping::new(config, mdct.get_i_fs());
            let temporal_noise_shaping = TemporalNoiseShaping::new(config);
            let (long_term_post_filter, scaler_buf, integer_buf) =
                LongTermPostFilter::new(config, scaler_buf_save, integer_buf);
            let spectral_quantization = SpectralQuantization::new(config.ne, config.fs_ind);
            let noise_level_estimation = NoiseLevelEstimation::new(config.n_ms, config.ne);
            let bitstream_encoding = BitstreamEncoding::new(config.ne);
            let (output, scaler_buf) = scaler_buf.split_at_mut(config.nf);
            let (energy_bands, scaler_buf) = scaler_buf.split_at_mut(config.nb);
            let residual = ResidualBitsEncoder::default();
            let (x_q, integer_buf) = integer_buf.split_at_mut(config.ne);

            let channel = EncoderChannel {
                mdct,
                bandwidth_detector,
                attack_detector,
                spectral_noise_shaping,
                temporal_noise_shaping,
                long_term_post_filter,
                spectral_quantization,
                noise_level_estimation,
                bitstream_encoding,
                frame_index: 0,
                mdct_out: output,
                energy_bands,
                residual,
                config,
                spec_quant_out: x_q,
            };

            channels.push(channel).ok();
            integer_buf_save = integer_buf;
            scaler_buf_save = scaler_buf;
            complex_buf_save = complex_buf;
        }

        Self { channels }
    }

    pub fn encode_frame(
        &mut self,
        channel_index: usize,
        samples_in: &[i16],
        buf_out: &mut [u8],
    ) -> Result<(), Lc3EncoderError> {
        if channel_index < NUM_CHANNELS {
            let channel = &mut self.channels[channel_index];
            channel.encode(samples_in, buf_out)
        } else {
            panic!(
                "Cannot decode channel index {} as config only specifies {} channels",
                channel_index, NUM_CHANNELS
            );
        }
    }

    // (integer, scaler, complex)
    pub const fn calc_working_buffer_lengths(
        frame_duration: FrameDuration,
        sampling_frequency: SamplingFrequency,
    ) -> (usize, usize, usize) {
        let config = Lc3Config::new(sampling_frequency, frame_duration);
        let (mdct_integer_len, mdct_complex_len) = ModDiscreteCosTrans::calc_working_buffer_lengths(&config);
        let (ltpf_integer_len, ltpf_scaler_len) = LongTermPostFilter::calc_working_buffer_length(&config);
        let scaler_len = ltpf_scaler_len + config.nf + config.nb;
        let integer_len = mdct_integer_len + ltpf_integer_len + config.ne;
        (
            integer_len * NUM_CHANNELS,
            scaler_len * NUM_CHANNELS,
            mdct_complex_len * NUM_CHANNELS,
        )
    }
}

#[cfg(test)]
mod tests {
    extern crate std;
    use super::*;
    use crate::common::config::{FrameDuration, SamplingFrequency};

    #[cfg(feature = "alloc")]
    #[test]
    fn lc3_encode_channel() {
        const NUM_CH: usize = 1;
        const DURATION: FrameDuration = FrameDuration::TenMs;
        const FREQ: SamplingFrequency = SamplingFrequency::Hz48000;
        const BUF_LENGTHS: (usize, usize, usize) = Lc3Encoder::calc_working_buffer_lengths(NUM_CH, DURATION, FREQ);
        let mut integer_buf = [0; BUF_LENGTHS.0];
        let mut scaler_buf = [0.0; BUF_LENGTHS.1];
        let mut complex_buf = [Complex::default(); BUF_LENGTHS.2];

        let mut encoder = Lc3Encoder::new(
            NUM_CH, DURATION, FREQ, &mut integer_buf, &mut scaler_buf, &mut complex_buf,
        );
        let samples_in = [
            836, 739, 638, 510, 352, 200, 72, -56, -177, -297, -416, -520, -623, -709, -791, -911, -1062, -1199, -1298,
            -1375, -1433, -1484, -1548, -1603, -1648, -1687, -1724, -1744, -1730, -1699, -1650, -1613, -1594, -1563,
            -1532, -1501, -1473, -1441, -1409, -1393, -1355, -1280, -1201, -1118, -1032, -953, -860, -741, -613, -477,
            -355, -261, -168, -80, -8, 57, 127, 217, 296, 347, 385, 413, 456, 517, 575, 640, 718, 806, 888, 963, 1041,
            1080, 1081, 1083, 1072, 1062, 1067, 1056, 1035, 1019, 999, 964, 934, 909, 876, 854, 835, 813, 795, 781,
            783, 772, 750, 747, 728, 713, 726, 716, 680, 638, 580, 516, 451, 393, 351, 307, 244, 161, 79, 18, -45,
            -123, -215, -301, -389, -512, -644, -764, -888, -1006, -1126, -1253, -1378, -1500, -1614, -1716, -1813,
            -1926, -2051, -2176, -2301, -2416, -2514, -2595, -2680, -2783, -2883, -2977, -3068, -3163, -3262, -3341,
            -3381, -3392, -3392, -3379, -3368, -3353, -3318, -3292, -3244, -3169, -3109, -3049, -2989, -2922, -2844,
            -2790, -2743, -2672, -2588, -2490, -2371, -2222, -2046, -1861, -1695, -1546, -1384, -1214, -1058, -913,
            -761, -602, -441, -280, -124, 24, 169, 302, 421, 546, 661, 738, 796, 851, 924, 1055, 1227, 1412, 1588,
            1707, 1787, 1853, 1905, 1963, 2015, 2048, 2072, 2082, 2093, 2099, 2095, 2097, 2086, 2063, 2060, 2069, 2052,
            2012, 1977, 1956, 1948, 1918, 1843, 1748, 1641, 1533, 1435, 1342, 1252, 1163, 1081, 1024, 989, 962, 937,
            911, 879, 841, 769, 657, 541, 445, 365, 289, 202, 104, -4, -119, -245, -381, -523, -655, -770, -874, -957,
            -1017, -1069, -1118, -1173, -1256, -1370, -1497, -1629, -1745, -1827, -1882, -1934, -2021, -2115, -2165,
            -2196, -2230, -2258, -2282, -2302, -2320, -2332, -2340, -2344, -2338, -2313, -2269, -2215, -2152, -2072,
            -1978, -1885, -1793, -1704, -1621, -1528, -1419, -1310, -1213, -1116, -1014, -914, -820, -736, -656, -578,
            -514, -445, -358, -276, -206, -136, -62, 0, 56, 124, 190, 253, 316, 379, 458, 552, 630, 686, 725, 735, 709,
            661, 612, 572, 538, 507, 476, 453, 448, 453, 444, 415, 370, 316, 257, 203, 159, 125, 107, 114, 137, 162,
            181, 189, 186, 166, 145, 145, 154, 154, 161, 184, 200, 217, 254, 294, 325, 332, 320, 302, 286, 273, 260,
            266, 294, 297, 274, 251, 221, 170, 100, 29, -31, -82, -134, -187, -232, -278, -347, -426, -490, -548, -613,
            -677, -727, -755, -769, -770, -757, -741, -729, -713, -684, -659, -647, -631, -606, -588, -585, -577, -555,
            -534, -527, -528, -513, -480, -456, -440, -415, -382, -333, -244, -132, -32, 47, 130, 225, 308, 383, 460,
            533, 607, 687, 757, 817, 889, 977, 1038, 1064, 1100, 1165, 1250, 1349, 1456, 1563, 1665, 1755, 1829, 1890,
            1935, 1973, 2008, 2033, 2044, 2054, 2076, 2106, 2125, 2115, 2097, 2092, 2093, 2082, 2067, 2068, 2095, 2135,
            2169, 2193, 2213, 2219, 2202, 2163, 2101, 2033, 1992, 1985, 1990, 1986, 1978, 1977, 1976, 1969, 1959, 1956,
            1960, 1955, 1930, 1907, 1884, 1844, 1790, 1733, 1687, 1649, 1611, 1586,
        ];
        let mut buf_out = [0; 150];

        encoder.encode_frame(0, &samples_in, &mut buf_out).unwrap();

        let buf_out_expected = [
            230, 243, 160, 169, 152, 75, 36, 156, 223, 96, 241, 214, 150, 248, 180, 106, 115, 92, 147, 213, 56, 100,
            96, 52, 194, 178, 44, 31, 222, 246, 83, 116, 240, 220, 40, 241, 82, 228, 209, 57, 128, 152, 9, 144, 112,
            249, 48, 46, 135, 182, 250, 59, 135, 221, 129, 46, 204, 178, 232, 100, 172, 27, 177, 120, 86, 253, 35, 137,
            19, 253, 191, 202, 97, 240, 10, 45, 124, 110, 234, 149, 49, 115, 209, 177, 153, 231, 93, 211, 214, 19, 127,
            143, 103, 47, 239, 86, 73, 91, 231, 94, 248, 143, 54, 54, 190, 51, 47, 136, 92, 157, 13, 226, 13, 96, 104,
            159, 17, 206, 66, 25, 157, 51, 5, 252, 166, 135, 213, 118, 107, 152, 226, 253, 51, 136, 74, 186, 52, 64,
            236, 152, 115, 0, 29, 23, 247, 3, 20, 124, 21, 116,
        ];
        assert_eq!(buf_out, buf_out_expected);
    }

    #[cfg(not(feature = "alloc"))]
    #[test]
    fn lc3_encode_channel() {
        const NUM_CH: usize = 1;
        const DURATION: FrameDuration = FrameDuration::TenMs;
        const FREQ: SamplingFrequency = SamplingFrequency::Hz48000;
        const BUF_LENGTHS: (usize, usize, usize) = Lc3Encoder::<NUM_CH>::calc_working_buffer_lengths(DURATION, FREQ);
        let mut integer_buf = [0; BUF_LENGTHS.0];
        let mut scaler_buf = [0.0; BUF_LENGTHS.1];
        let mut complex_buf = [Complex::default(); BUF_LENGTHS.2];

        let mut encoder =
            Lc3Encoder::<NUM_CH>::new(DURATION, FREQ, &mut integer_buf, &mut scaler_buf, &mut complex_buf);
        let samples_in = [
            836, 739, 638, 510, 352, 200, 72, -56, -177, -297, -416, -520, -623, -709, -791, -911, -1062, -1199, -1298,
            -1375, -1433, -1484, -1548, -1603, -1648, -1687, -1724, -1744, -1730, -1699, -1650, -1613, -1594, -1563,
            -1532, -1501, -1473, -1441, -1409, -1393, -1355, -1280, -1201, -1118, -1032, -953, -860, -741, -613, -477,
            -355, -261, -168, -80, -8, 57, 127, 217, 296, 347, 385, 413, 456, 517, 575, 640, 718, 806, 888, 963, 1041,
            1080, 1081, 1083, 1072, 1062, 1067, 1056, 1035, 1019, 999, 964, 934, 909, 876, 854, 835, 813, 795, 781,
            783, 772, 750, 747, 728, 713, 726, 716, 680, 638, 580, 516, 451, 393, 351, 307, 244, 161, 79, 18, -45,
            -123, -215, -301, -389, -512, -644, -764, -888, -1006, -1126, -1253, -1378, -1500, -1614, -1716, -1813,
            -1926, -2051, -2176, -2301, -2416, -2514, -2595, -2680, -2783, -2883, -2977, -3068, -3163, -3262, -3341,
            -3381, -3392, -3392, -3379, -3368, -3353, -3318, -3292, -3244, -3169, -3109, -3049, -2989, -2922, -2844,
            -2790, -2743, -2672, -2588, -2490, -2371, -2222, -2046, -1861, -1695, -1546, -1384, -1214, -1058, -913,
            -761, -602, -441, -280, -124, 24, 169, 302, 421, 546, 661, 738, 796, 851, 924, 1055, 1227, 1412, 1588,
            1707, 1787, 1853, 1905, 1963, 2015, 2048, 2072, 2082, 2093, 2099, 2095, 2097, 2086, 2063, 2060, 2069, 2052,
            2012, 1977, 1956, 1948, 1918, 1843, 1748, 1641, 1533, 1435, 1342, 1252, 1163, 1081, 1024, 989, 962, 937,
            911, 879, 841, 769, 657, 541, 445, 365, 289, 202, 104, -4, -119, -245, -381, -523, -655, -770, -874, -957,
            -1017, -1069, -1118, -1173, -1256, -1370, -1497, -1629, -1745, -1827, -1882, -1934, -2021, -2115, -2165,
            -2196, -2230, -2258, -2282, -2302, -2320, -2332, -2340, -2344, -2338, -2313, -2269, -2215, -2152, -2072,
            -1978, -1885, -1793, -1704, -1621, -1528, -1419, -1310, -1213, -1116, -1014, -914, -820, -736, -656, -578,
            -514, -445, -358, -276, -206, -136, -62, 0, 56, 124, 190, 253, 316, 379, 458, 552, 630, 686, 725, 735, 709,
            661, 612, 572, 538, 507, 476, 453, 448, 453, 444, 415, 370, 316, 257, 203, 159, 125, 107, 114, 137, 162,
            181, 189, 186, 166, 145, 145, 154, 154, 161, 184, 200, 217, 254, 294, 325, 332, 320, 302, 286, 273, 260,
            266, 294, 297, 274, 251, 221, 170, 100, 29, -31, -82, -134, -187, -232, -278, -347, -426, -490, -548, -613,
            -677, -727, -755, -769, -770, -757, -741, -729, -713, -684, -659, -647, -631, -606, -588, -585, -577, -555,
            -534, -527, -528, -513, -480, -456, -440, -415, -382, -333, -244, -132, -32, 47, 130, 225, 308, 383, 460,
            533, 607, 687, 757, 817, 889, 977, 1038, 1064, 1100, 1165, 1250, 1349, 1456, 1563, 1665, 1755, 1829, 1890,
            1935, 1973, 2008, 2033, 2044, 2054, 2076, 2106, 2125, 2115, 2097, 2092, 2093, 2082, 2067, 2068, 2095, 2135,
            2169, 2193, 2213, 2219, 2202, 2163, 2101, 2033, 1992, 1985, 1990, 1986, 1978, 1977, 1976, 1969, 1959, 1956,
            1960, 1955, 1930, 1907, 1884, 1844, 1790, 1733, 1687, 1649, 1611, 1586,
        ];
        let mut buf_out = [0; 150];

        encoder.encode_frame(0, &samples_in, &mut buf_out).unwrap();

        let buf_out_expected = [
            230, 243, 160, 169, 152, 75, 36, 156, 223, 96, 241, 214, 150, 248, 180, 106, 115, 92, 147, 213, 56, 100,
            96, 52, 194, 178, 44, 31, 222, 246, 83, 116, 240, 220, 40, 241, 82, 228, 209, 57, 128, 152, 9, 144, 112,
            249, 48, 46, 135, 182, 250, 59, 135, 221, 129, 46, 204, 178, 232, 100, 172, 27, 177, 120, 86, 253, 35, 137,
            19, 253, 191, 202, 97, 240, 10, 45, 124, 110, 234, 149, 49, 115, 209, 177, 153, 231, 93, 211, 214, 19, 127,
            143, 103, 47, 239, 86, 73, 91, 231, 94, 248, 143, 54, 54, 190, 51, 47, 136, 92, 157, 13, 226, 13, 96, 104,
            159, 17, 206, 66, 25, 157, 51, 5, 252, 166, 135, 213, 118, 107, 152, 226, 253, 51, 136, 74, 186, 52, 64,
            236, 152, 115, 0, 29, 23, 247, 3, 20, 124, 21, 116,
        ];
        assert_eq!(buf_out, buf_out_expected);
    }
}