Coverage Report

Created: 2025-07-11 06:40

/proc/self/cwd/libfaad/huffman.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
3
** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com
4
**
5
** This program is free software; you can redistribute it and/or modify
6
** it under the terms of the GNU General Public License as published by
7
** the Free Software Foundation; either version 2 of the License, or
8
** (at your option) any later version.
9
**
10
** This program is distributed in the hope that it will be useful,
11
** but WITHOUT ANY WARRANTY; without even the implied warranty of
12
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
** GNU General Public License for more details.
14
**
15
** You should have received a copy of the GNU General Public License
16
** along with this program; if not, write to the Free Software
17
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
**
19
** Any non-GPL usage of this software or parts of this software is strictly
20
** forbidden.
21
**
22
** The "appropriate copyright message" mentioned in section 2c of the GPLv2
23
** must read: "Code from FAAD2 is copyright (c) Nero AG, www.nero.com"
24
**
25
** Commercial non-GPL licensing of this software is possible.
26
** For more info contact Nero AG through Mpeg4AAClicense@nero.com.
27
**
28
** $Id: huffman.c,v 1.26 2007/11/01 12:33:30 menno Exp $
29
**/
30
31
#include "common.h"
32
#include "structs.h"
33
34
#include <stdlib.h>
35
#ifdef ANALYSIS
36
#include <stdio.h>
37
#endif
38
39
#include "bits.h"
40
#include "huffman.h"
41
#include "codebook/hcb.h"
42
43
44
/* static function declarations */
45
static INLINE void huffman_sign_bits(bitfile *ld, int16_t *sp, uint8_t len);
46
static INLINE uint8_t huffman_getescape(bitfile *ld, int16_t *sp);
47
static uint8_t huffman_2step_quad(uint8_t cb, bitfile *ld, int16_t *sp);
48
static uint8_t huffman_2step_quad_sign(uint8_t cb, bitfile *ld, int16_t *sp);
49
static uint8_t huffman_2step_pair(uint8_t cb, bitfile *ld, int16_t *sp);
50
static uint8_t huffman_2step_pair_sign(uint8_t cb, bitfile *ld, int16_t *sp);
51
static uint8_t huffman_binary_quad(uint8_t cb, bitfile *ld, int16_t *sp);
52
static uint8_t huffman_binary_quad_sign(uint8_t cb, bitfile *ld, int16_t *sp);
53
static uint8_t huffman_binary_pair(uint8_t cb, bitfile *ld, int16_t *sp);
54
static uint8_t huffman_binary_pair_sign(uint8_t cb, bitfile *ld, int16_t *sp);
55
#if 0
56
static int16_t huffman_codebook(uint8_t i);
57
#endif
58
static void vcb11_check_LAV(uint8_t cb, int16_t *sp);
59
60
int8_t huffman_scale_factor(bitfile *ld)
61
40.7k
{
62
40.7k
    uint16_t offset = 0;
63
64
111k
    while (hcb_sf[offset][1])
65
70.6k
    {
66
70.6k
        uint8_t b = faad_get1bit(ld
67
70.6k
            DEBUGVAR(1,255,"huffman_scale_factor()"));
68
70.6k
        offset += hcb_sf[offset][b];
69
70.6k
    }
70
71
40.7k
    return hcb_sf[offset][0];
72
40.7k
}
73
74
75
static const uint8_t hcbN[LAST_CB_IDX + 1] =
76
{   0,      5,      5,    0,      5,    0,      5,    0,      5,    0,       6,       5};
77
static const hcb* hcb_table[LAST_CB_IDX + 1] =
78
{NULL, hcb1_1, hcb2_1, NULL, hcb4_1, NULL, hcb6_1, NULL, hcb8_1, NULL, hcb10_1, hcb11_1};
79
static const hcb_2_quad* hcb_2_quad_table[LAST_CB_IDX + 1] =
80
{NULL, hcb1_2, hcb2_2, NULL, hcb4_2, NULL,   NULL, NULL,   NULL, NULL,    NULL,    NULL};
81
static const hcb_2_pair* hcb_2_pair_table[LAST_CB_IDX + 1] =
82
{NULL,   NULL,   NULL, NULL,   NULL, NULL, hcb6_2, NULL, hcb8_2, NULL, hcb10_2, hcb11_2};
83
static const hcb_bin_pair* hcb_bin_table[LAST_CB_IDX + 1] =
84
{NULL,   NULL,   NULL, NULL,   NULL, hcb5,   NULL, hcb7,   NULL, hcb9,    NULL,    NULL};
85
/*                     hcb3 is the unique case */
86
87
/* defines whether a huffman codebook is unsigned or not */
88
/* Table 4.6.2 */
89
static uint8_t unsigned_cb[32] = { 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0,
90
           /* codebook 16 to 31 */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
91
};
92
93
static INLINE void huffman_sign_bits(bitfile *ld, int16_t *sp, uint8_t len)
94
97.7k
{
95
97.7k
    uint8_t i;
96
97
336k
    for (i = 0; i < len; i++)
98
238k
    {
99
238k
        if(sp[i])
100
106k
        {
101
106k
            if(faad_get1bit(ld
102
106k
                DEBUGVAR(1,5,"huffman_sign_bits(): sign bit")) & 1)
103
18.2k
            {
104
18.2k
                sp[i] = -sp[i];
105
18.2k
            }
106
106k
        }
107
238k
    }
108
97.7k
}
109
110
static INLINE uint8_t huffman_getescape(bitfile *ld, int16_t *sp)
111
77.0k
{
112
77.0k
    uint8_t neg, i;
113
77.0k
    int16_t j;
114
77.0k
  int16_t off;
115
77.0k
    int16_t x = *sp;
116
117
77.0k
    if (x < 0)
118
8.26k
    {
119
8.26k
        if (x != -16)
120
4.89k
            return 0;
121
3.36k
        neg = 1;
122
68.8k
    } else {
123
68.8k
        if (x != 16)
124
66.6k
            return 0;
125
2.14k
        neg = 0;
126
2.14k
    }
127
128
22.0k
    for (i = 4; i < 16; i++)
129
22.0k
    {
130
22.0k
        if (faad_get1bit(ld
131
22.0k
            DEBUGVAR(1,6,"huffman_getescape(): escape size")) == 0)
132
5.46k
        {
133
5.46k
            break;
134
5.46k
        }
135
22.0k
    }
136
5.50k
    if (i >= 16)
137
43
        return 10;
138
139
5.46k
    off = (int16_t)faad_getbits(ld, i
140
5.46k
        DEBUGVAR(1,9,"huffman_getescape(): escape"));
141
142
5.46k
    j = off | (1<<i);
143
5.46k
    if (neg)
144
3.33k
        j = -j;
145
146
5.46k
    *sp = j;
147
5.46k
    return 0;
148
5.50k
}
149
150
static uint8_t huffman_2step_quad(uint8_t cb, bitfile *ld, int16_t *sp)
151
27.4k
{
152
27.4k
    uint32_t cw;
153
27.4k
    uint16_t offset;
154
27.4k
    uint8_t extra_bits;
155
27.4k
    const hcb* root;
156
27.4k
    uint8_t root_bits;
157
27.4k
    const hcb_2_quad* table;
158
27.4k
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
159
27.4k
    if (hcbN[cb] == 0) __builtin_trap();
160
27.4k
    if (hcb_table[cb] == NULL) __builtin_trap();
161
27.4k
    if (hcb_2_quad_table[cb] == NULL) __builtin_trap();
162
    // In other words, `cb` is one of [1, 2, 4].
163
27.4k
#endif
164
27.4k
    root = hcb_table[cb];
165
27.4k
    root_bits = hcbN[cb];
166
27.4k
    table = hcb_2_quad_table[cb];
167
168
27.4k
    cw = faad_showbits(ld, root_bits);
169
27.4k
    offset = root[cw].offset;
170
27.4k
    extra_bits = root[cw].extra_bits;
171
172
27.4k
    if (extra_bits)
173
3.11k
    {
174
        /* We know for sure it's more than `root_bits` bits long. */
175
3.11k
        faad_flushbits(ld, root_bits);
176
3.11k
        offset += (uint16_t)faad_showbits(ld, extra_bits);
177
3.11k
        faad_flushbits(ld, table[offset].bits - root_bits);
178
24.3k
    } else {
179
24.3k
        faad_flushbits(ld, table[offset].bits);
180
24.3k
    }
181
182
27.4k
    sp[0] = table[offset].x;
183
27.4k
    sp[1] = table[offset].y;
184
27.4k
    sp[2] = table[offset].v;
185
27.4k
    sp[3] = table[offset].w;
186
187
27.4k
    return 0;
188
27.4k
}
189
190
static uint8_t huffman_2step_quad_sign(uint8_t cb, bitfile *ld, int16_t *sp)
191
9.85k
{
192
9.85k
    uint8_t err = huffman_2step_quad(cb, ld, sp);
193
9.85k
    huffman_sign_bits(ld, sp, QUAD_LEN);
194
195
9.85k
    return err;
196
9.85k
}
197
198
static uint8_t huffman_2step_pair(uint8_t cb, bitfile *ld, int16_t *sp)
199
74.7k
{
200
74.7k
    uint32_t cw;
201
74.7k
    uint16_t offset;
202
74.7k
    uint8_t extra_bits;
203
74.7k
    const hcb* root;
204
74.7k
    uint8_t root_bits;
205
74.7k
    const hcb_2_pair* table;
206
74.7k
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
207
74.7k
    if (hcbN[cb] == 0) __builtin_trap();
208
74.7k
    if (hcb_table[cb] == NULL) __builtin_trap();
209
74.7k
    if (hcb_2_pair_table[cb] == NULL) __builtin_trap();
210
    // In other words, `cb` is one of [6, 8, 10, 11].
211
74.7k
#endif
212
74.7k
    root = hcb_table[cb];
213
74.7k
    root_bits = hcbN[cb];
214
74.7k
    table = hcb_2_pair_table[cb];
215
216
74.7k
    cw = faad_showbits(ld, root_bits);
217
74.7k
    offset = root[cw].offset;
218
74.7k
    extra_bits = root[cw].extra_bits;
219
220
74.7k
    if (extra_bits)
221
7.65k
    {
222
        /* we know for sure it's more than hcbN[cb] bits long */
223
7.65k
        faad_flushbits(ld, root_bits);
224
7.65k
        offset += (uint16_t)faad_showbits(ld, extra_bits);
225
7.65k
        faad_flushbits(ld, table[offset].bits - root_bits);
226
67.0k
    } else {
227
67.0k
        faad_flushbits(ld, table[offset].bits);
228
67.0k
    }
229
230
74.7k
    sp[0] = table[offset].x;
231
74.7k
    sp[1] = table[offset].y;
232
233
74.7k
    return 0;
234
74.7k
}
235
236
static uint8_t huffman_2step_pair_sign(uint8_t cb, bitfile *ld, int16_t *sp)
237
63.1k
{
238
63.1k
    uint8_t err = huffman_2step_pair(cb, ld, sp);
239
63.1k
    huffman_sign_bits(ld, sp, PAIR_LEN);
240
241
63.1k
    return err;
242
63.1k
}
243
244
static uint8_t huffman_binary_quad(uint8_t cb, bitfile *ld, int16_t *sp)
245
11.6k
{
246
11.6k
    uint16_t offset = 0;
247
11.6k
    const hcb_bin_quad* table = hcb3;
248
249
11.6k
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
250
11.6k
    if (cb != 3) __builtin_trap();
251
11.6k
#endif
252
253
35.1k
    while (!table[offset].is_leaf)
254
23.5k
    {
255
23.5k
        uint8_t b = faad_get1bit(ld
256
23.5k
            DEBUGVAR(1,255,"huffman_spectral_data():3"));
257
23.5k
        offset += table[offset].data[b];
258
23.5k
    }
259
260
11.6k
    sp[0] = table[offset].data[0];
261
11.6k
    sp[1] = table[offset].data[1];
262
11.6k
    sp[2] = table[offset].data[2];
263
11.6k
    sp[3] = table[offset].data[3];
264
265
11.6k
    return 0;
266
11.6k
}
267
268
static uint8_t huffman_binary_quad_sign(uint8_t cb, bitfile *ld, int16_t *sp)
269
11.6k
{
270
11.6k
    uint8_t err = huffman_binary_quad(cb, ld, sp);
271
11.6k
    huffman_sign_bits(ld, sp, QUAD_LEN);
272
273
11.6k
    return err;
274
11.6k
}
275
276
static uint8_t huffman_binary_pair(uint8_t cb, bitfile *ld, int16_t *sp)
277
19.3k
{
278
19.3k
    uint16_t offset = 0;
279
19.3k
    const hcb_bin_pair* table;
280
19.3k
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
281
19.3k
    if (hcb_bin_table[cb] == NULL) __builtin_trap();
282
19.3k
    if (cb == 3) __builtin_trap();
283
    // In other words, `cb` is one of [5, 7, 9].
284
19.3k
#endif
285
19.3k
    table = hcb_bin_table[cb];
286
287
53.7k
    while (!table[offset].is_leaf)
288
34.4k
    {
289
34.4k
        uint8_t b = faad_get1bit(ld
290
34.4k
            DEBUGVAR(1,255,"huffman_spectral_data():9"));
291
34.4k
        offset += table[offset].data[b];
292
34.4k
    }
293
294
19.3k
    sp[0] = table[offset].data[0];
295
19.3k
    sp[1] = table[offset].data[1];
296
297
19.3k
    return 0;
298
19.3k
}
299
300
static uint8_t huffman_binary_pair_sign(uint8_t cb, bitfile *ld, int16_t *sp)
301
13.1k
{
302
13.1k
    uint8_t err = huffman_binary_pair(cb, ld, sp);
303
13.1k
    huffman_sign_bits(ld, sp, PAIR_LEN);
304
305
13.1k
    return err;
306
13.1k
}
307
308
#if 0
309
static int16_t huffman_codebook(uint8_t i)
310
{
311
    static const uint32_t data = 16428320;
312
    if (i == 0) return (int16_t)(data >> 16) & 0xFFFF;
313
    else        return (int16_t)data & 0xFFFF;
314
}
315
#endif
316
317
static void vcb11_check_LAV(uint8_t cb, int16_t *sp)
318
45.0k
{
319
45.0k
    static const uint16_t vcb11_LAV_tab[] = {
320
45.0k
        16, 31, 47, 63, 95, 127, 159, 191, 223,
321
45.0k
        255, 319, 383, 511, 767, 1023, 2047
322
45.0k
    };
323
45.0k
    uint16_t max = 0;
324
325
45.0k
    if (cb < 16 || cb > 31)
326
0
        return;
327
328
45.0k
    max = vcb11_LAV_tab[cb - 16];
329
330
45.0k
    if ((abs(sp[0]) > max) || (abs(sp[1]) > max))
331
1.24k
    {
332
1.24k
        sp[0] = 0;
333
1.24k
        sp[1] = 0;
334
1.24k
    }
335
45.0k
}
336
337
uint8_t huffman_spectral_data(uint8_t cb, bitfile *ld, int16_t *sp)
338
133k
{
339
133k
    switch (cb)
340
133k
    {
341
12.0k
    case 1: /* 2-step method for data quadruples */
342
17.5k
    case 2:
343
17.5k
        return huffman_2step_quad(cb, ld, sp);
344
11.6k
    case 3: /* binary search for data quadruples */
345
11.6k
        return huffman_binary_quad_sign(cb, ld, sp);
346
9.85k
    case 4: /* 2-step method for data quadruples */
347
9.85k
        return huffman_2step_quad_sign(cb, ld, sp);
348
6.22k
    case 5: /* binary search for data pairs */
349
6.22k
        return huffman_binary_pair(cb, ld, sp);
350
11.5k
    case 6: /* 2-step method for data pairs */
351
11.5k
        return huffman_2step_pair(cb, ld, sp);
352
7.96k
    case 7: /* binary search for data pairs */
353
13.1k
    case 9:
354
13.1k
        return huffman_binary_pair_sign(cb, ld, sp);
355
14.7k
    case 8: /* 2-step method for data pairs */
356
24.6k
    case 10:
357
24.6k
        return huffman_2step_pair_sign(cb, ld, sp);
358
    /* Codebook 12 is disallowed, see `section_data` */
359
#if 0
360
    case 12: {
361
        uint8_t err = huffman_2step_pair(11, ld, sp);
362
        sp[0] = huffman_codebook(0); sp[1] = huffman_codebook(1);
363
        return err; }
364
#endif
365
19.5k
    case 11:
366
19.5k
    {
367
19.5k
        uint8_t err = huffman_2step_pair_sign(11, ld, sp);
368
19.5k
        if (!err)
369
19.5k
            err = huffman_getescape(ld, &sp[0]);
370
19.5k
        if (!err)
371
19.5k
            err = huffman_getescape(ld, &sp[1]);
372
19.5k
        return err;
373
14.7k
    }
374
0
#ifdef ERROR_RESILIENCE
375
    /* VCB11 uses codebook 11 */
376
10.3k
    case 16: case 17: case 18: case 19: case 20: case 21: case 22: case 23:
377
18.9k
    case 24: case 25: case 26: case 27: case 28: case 29: case 30: case 31:
378
18.9k
    {
379
18.9k
        uint8_t err = huffman_2step_pair_sign(11, ld, sp);
380
18.9k
        if (!err)
381
18.9k
            err = huffman_getescape(ld, &sp[0]);
382
18.9k
        if (!err)
383
18.9k
            err = huffman_getescape(ld, &sp[1]);
384
385
        /* check LAV (Largest Absolute Value) */
386
        /* this finds errors in the ESCAPE signal */
387
18.9k
        vcb11_check_LAV(cb, sp);
388
389
18.9k
        return err;
390
15.7k
    }
391
0
#endif
392
0
    default:
393
        /* Non existent codebook number, something went wrong */
394
0
        return 11;
395
133k
    }
396
397
    /* return 0; */
398
133k
}
399
400
401
#ifdef ERROR_RESILIENCE
402
403
/* Special version of huffman_spectral_data
404
Will not read from a bitfile but a bits_t structure.
405
Will keep track of the bits decoded and return the number of bits remaining.
406
Do not read more than ld->len, return -1 if codeword would be longer */
407
408
int8_t huffman_spectral_data_2(uint8_t cb, bits_t *ld, int16_t *sp)
409
86.8k
{
410
86.8k
    uint32_t cw;
411
86.8k
    uint16_t offset = 0;
412
86.8k
    uint8_t extra_bits;
413
86.8k
    uint8_t vcb11 = 0;
414
415
416
86.8k
    switch (cb)
417
86.8k
    {
418
2.81k
    case 1: /* 2-step method for data quadruples */
419
9.38k
    case 2:
420
26.8k
    case 4: {
421
26.8k
        const hcb* root;
422
26.8k
        uint8_t root_bits;
423
26.8k
        const hcb_2_quad* table;
424
26.8k
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
425
26.8k
        if (hcbN[cb] == 0) __builtin_trap();
426
26.8k
        if (hcb_table[cb] == NULL) __builtin_trap();
427
26.8k
        if (hcb_2_quad_table[cb] == NULL) __builtin_trap();
428
        // In other words, `cb` is one of [1, 2, 4].
429
26.8k
#endif
430
26.8k
        root = hcb_table[cb];
431
26.8k
        root_bits = hcbN[cb];
432
26.8k
        table = hcb_2_quad_table[cb];
433
434
26.8k
        cw = showbits_hcr(ld, root_bits);
435
26.8k
        offset = root[cw].offset;
436
26.8k
        extra_bits = root[cw].extra_bits;
437
438
26.8k
        if (extra_bits)
439
2.32k
        {
440
            /* We know for sure it's more than root_bits bits long. */
441
2.32k
            if (flushbits_hcr(ld, root_bits)) return -1;
442
1.76k
            offset += (uint16_t)showbits_hcr(ld, extra_bits);
443
1.76k
            if (flushbits_hcr(ld, table[offset].bits - root_bits)) return -1;
444
24.5k
        } else {
445
24.5k
            if (flushbits_hcr(ld, table[offset].bits)) return -1;
446
24.5k
        }
447
448
22.2k
        sp[0] = table[offset].x;
449
22.2k
        sp[1] = table[offset].y;
450
22.2k
        sp[2] = table[offset].v;
451
22.2k
        sp[3] = table[offset].w;
452
22.2k
        break;
453
26.8k
    }
454
3.60k
    case 6: /* 2-step method for data pairs */
455
12.7k
    case 8:
456
13.7k
    case 10:
457
20.2k
    case 11:
458
    /* VCB11 uses codebook 11 */
459
33.9k
    case 16: case 17: case 18: case 19: case 20: case 21: case 22: case 23:
460
52.4k
    case 24: case 25: case 26: case 27: case 28: case 29: case 30: case 31: {
461
52.4k
        const hcb* root;
462
52.4k
        uint8_t root_bits;
463
52.4k
        const hcb_2_pair* table;
464
465
52.4k
        if (cb >= 16)
466
32.2k
        {
467
            /* store the virtual codebook */
468
32.2k
            vcb11 = cb;
469
32.2k
            cb = 11;
470
32.2k
        }
471
52.4k
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
472
52.4k
        if (hcbN[cb] == 0) __builtin_trap();
473
52.4k
        if (hcb_table[cb] == NULL) __builtin_trap();
474
52.4k
        if (hcb_2_pair_table[cb] == NULL) __builtin_trap();
475
        // In other words, `cb` is one of [6, 8, 10, 11].
476
52.4k
#endif
477
52.4k
        root = hcb_table[cb];
478
52.4k
        root_bits = hcbN[cb];
479
52.4k
        table = hcb_2_pair_table[cb];
480
481
52.4k
        cw = showbits_hcr(ld, root_bits);
482
52.4k
        offset = root[cw].offset;
483
52.4k
        extra_bits = root[cw].extra_bits;
484
485
52.4k
        if (extra_bits)
486
5.74k
        {
487
            /* we know for sure it's more than hcbN[cb] bits long */
488
5.74k
            if (flushbits_hcr(ld, root_bits)) return -1;
489
5.21k
            offset += (uint16_t)showbits_hcr(ld, extra_bits);
490
5.21k
            if (flushbits_hcr(ld, table[offset].bits - root_bits)) return -1;
491
46.7k
        } else {
492
46.7k
            if ( flushbits_hcr(ld, table[offset].bits)) return -1;
493
46.7k
        }
494
47.7k
        sp[0] = table[offset].x;
495
47.7k
        sp[1] = table[offset].y;
496
47.7k
        break;
497
52.4k
    }
498
2.84k
    case 3: { /* binary search for data quadruples */
499
2.84k
        const hcb_bin_quad* table = hcb3;
500
5.70k
        while (!table[offset].is_leaf)
501
3.07k
        {
502
3.07k
            uint8_t b;
503
3.07k
            if (get1bit_hcr(ld, &b)) return -1;
504
2.86k
            offset += table[offset].data[b];
505
2.86k
        }
506
507
2.63k
        sp[0] = table[offset].data[0];
508
2.63k
        sp[1] = table[offset].data[1];
509
2.63k
        sp[2] = table[offset].data[2];
510
2.63k
        sp[3] = table[offset].data[3];
511
512
2.63k
        break;
513
2.84k
    }
514
515
2.08k
    case 5: /* binary search for data pairs */
516
3.35k
    case 7:
517
4.64k
    case 9: {
518
4.64k
        const hcb_bin_pair* table = hcb_bin_table[cb];
519
10.2k
        while (!table[offset].is_leaf)
520
5.81k
        {
521
5.81k
            uint8_t b;
522
523
5.81k
            if (get1bit_hcr(ld, &b) ) return -1;
524
5.56k
            offset += table[offset].data[b];
525
5.56k
        }
526
527
4.39k
        sp[0] = table[offset].data[0];
528
4.39k
        sp[1] = table[offset].data[1];
529
530
4.39k
        break;
531
4.64k
    }}
532
533
  /* decode sign bits */
534
77.1k
    if (unsigned_cb[cb])
535
64.1k
    {
536
64.1k
        uint8_t i;
537
222k
        for(i = 0; i < ((cb < FIRST_PAIR_HCB) ? QUAD_LEN : PAIR_LEN); i++)
538
161k
        {
539
161k
            if(sp[i])
540
78.8k
            {
541
78.8k
              uint8_t b;
542
78.8k
                if ( get1bit_hcr(ld, &b) ) return -1;
543
76.0k
                if (b != 0) {
544
18.5k
                    sp[i] = -sp[i];
545
18.5k
                }
546
76.0k
           }
547
161k
        }
548
64.1k
    }
549
550
    /* decode huffman escape bits */
551
74.3k
    if ((cb == ESC_HCB) || (cb >= 16))
552
35.1k
    {
553
35.1k
        uint8_t k;
554
101k
        for (k = 0; k < 2; k++)
555
68.8k
        {
556
68.8k
            if ((sp[k] == 16) || (sp[k] == -16))
557
5.50k
            {
558
5.50k
                uint8_t neg, i;
559
5.50k
                int32_t j;
560
5.50k
                uint32_t off;
561
562
5.50k
                neg = (sp[k] < 0) ? 1 : 0;
563
564
13.7k
                for (i = 4; ; i++)
565
19.2k
                {
566
19.2k
                    uint8_t b;
567
19.2k
                    if (get1bit_hcr(ld, &b))
568
765
                        return -1;
569
18.4k
                    if (b == 0)
570
4.73k
                        break;
571
18.4k
                }
572
573
4.73k
                if (i > 32)
574
128
                    return -1;
575
576
4.60k
                if (getbits_hcr(ld, i, &off))
577
1.80k
                    return -1;
578
2.80k
                j = off + (1<<i);
579
2.80k
                sp[k] = (int16_t)((neg) ? -j : j);
580
2.80k
            }
581
68.8k
        }
582
583
32.4k
        if (vcb11 != 0)
584
26.0k
        {
585
            /* check LAV (Largest Absolute Value) */
586
            /* this finds errors in the ESCAPE signal */
587
26.0k
            vcb11_check_LAV(vcb11, sp);
588
26.0k
        }
589
32.4k
    }
590
71.6k
    return ld->len;
591
74.3k
}
592
593
#endif
594