Coverage Report

Created: 2026-07-24 06:21

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/proc/self/cwd/libfaad/output.c
Line
Count
Source
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: output.c,v 1.47 2009/01/26 23:51:15 menno Exp $
29
**/
30
31
#include "common.h"
32
#include "structs.h"
33
34
#include "output.h"
35
36
#ifndef FIXED_POINT
37
38
39
4.73M
#define FLOAT_SCALE (1.0f/(1<<15))
40
41
1.13M
#define DM_MUL REAL_CONST(0.3203772410170407) // 1/(1+sqrt(2) + 1/sqrt(2))
42
2.26M
#define RSQRT2 REAL_CONST(0.7071067811865475244) // 1/sqrt(2)
43
44
45
static INLINE real_t get_sample(real_t **input, uint8_t channel, uint16_t sample,
46
                                uint8_t down_matrix, uint8_t *internal_channel)
47
16.1M
{
48
16.1M
    if (!down_matrix)
49
15.0M
        return input[internal_channel[channel]][sample];
50
51
1.13M
    if (channel == 0)
52
566k
    {
53
566k
        return DM_MUL * (input[internal_channel[1]][sample] +
54
566k
            input[internal_channel[0]][sample] * RSQRT2 +
55
566k
            input[internal_channel[3]][sample] * RSQRT2);
56
566k
    } else {
57
566k
        return DM_MUL * (input[internal_channel[2]][sample] +
58
566k
            input[internal_channel[0]][sample] * RSQRT2 +
59
566k
            input[internal_channel[4]][sample] * RSQRT2);
60
566k
    }
61
1.13M
}
62
63
#ifndef HAS_LRINTF
64
14.9M
#define CLIP(sample, max, min) \
65
14.9M
if (sample >= 0.0f)            \
66
12.4M
{                              \
67
12.4M
    sample += 0.5f;            \
68
12.4M
    if (sample >= max)         \
69
12.4M
        sample = max;          \
70
12.4M
} else {                       \
71
2.42M
    sample += -0.5f;           \
72
2.42M
    if (sample <= min)         \
73
2.42M
        sample = min;          \
74
2.42M
}
75
#else
76
#define CLIP(sample, max, min) \
77
if (sample >= 0.0f)            \
78
{                              \
79
    if (sample >= max)         \
80
        sample = max;          \
81
} else {                       \
82
    if (sample <= min)         \
83
        sample = min;          \
84
}
85
#endif
86
87
3.15k
#define CONV(a,b) ((a<<1)|(b&0x1))
88
89
static void to_PCM_16bit(NeAACDecStruct *hDecoder, real_t **input,
90
                         uint8_t channels, uint16_t frame_len,
91
                         int16_t **sample_buffer)
92
692
{
93
692
    uint8_t ch, ch1;
94
692
    uint16_t i;
95
96
692
    switch (CONV(channels,hDecoder->downMatrix))
97
692
    {
98
0
    case CONV(1,0):
99
0
    case CONV(1,1):
100
0
        for(i = 0; i < frame_len; i++)
101
0
        {
102
0
            real_t inp = input[hDecoder->internal_channel[0]][i];
103
104
0
            CLIP(inp, 32767.0f, -32768.0f);
105
106
0
            (*sample_buffer)[i] = (int16_t)lrintf(inp);
107
0
        }
108
0
        break;
109
427
    case CONV(2,0):
110
427
        if (hDecoder->upMatrix)
111
0
        {
112
0
            ch  = hDecoder->internal_channel[0];
113
0
            for(i = 0; i < frame_len; i++)
114
0
            {
115
0
                real_t inp0 = input[ch][i];
116
117
0
                CLIP(inp0, 32767.0f, -32768.0f);
118
119
0
                (*sample_buffer)[(i*2)+0] = (int16_t)lrintf(inp0);
120
0
                (*sample_buffer)[(i*2)+1] = (int16_t)lrintf(inp0);
121
0
            }
122
427
        } else {
123
427
            ch  = hDecoder->internal_channel[0];
124
427
            ch1 = hDecoder->internal_channel[1];
125
713k
            for(i = 0; i < frame_len; i++)
126
713k
            {
127
713k
                real_t inp0 = input[ch ][i];
128
713k
                real_t inp1 = input[ch1][i];
129
130
713k
                CLIP(inp0, 32767.0f, -32768.0f);
131
713k
                CLIP(inp1, 32767.0f, -32768.0f);
132
133
713k
                (*sample_buffer)[(i*2)+0] = (int16_t)lrintf(inp0);
134
713k
                (*sample_buffer)[(i*2)+1] = (int16_t)lrintf(inp1);
135
713k
            }
136
427
        }
137
427
        break;
138
265
    default:
139
3.13k
        for (ch = 0; ch < channels; ch++)
140
2.87k
        {
141
4.49M
            for(i = 0; i < frame_len; i++)
142
4.49M
            {
143
4.49M
                real_t inp = get_sample(input, ch, i, hDecoder->downMatrix, hDecoder->internal_channel);
144
145
4.49M
                CLIP(inp, 32767.0f, -32768.0f);
146
147
4.49M
                (*sample_buffer)[(i*channels)+ch] = (int16_t)lrintf(inp);
148
4.49M
            }
149
2.87k
        }
150
265
        break;
151
692
    }
152
692
}
153
154
static void to_PCM_24bit(NeAACDecStruct *hDecoder, real_t **input,
155
                         uint8_t channels, uint16_t frame_len,
156
                         int32_t **sample_buffer)
157
447
{
158
447
    uint8_t ch, ch1;
159
447
    uint16_t i;
160
161
447
    switch (CONV(channels,hDecoder->downMatrix))
162
447
    {
163
0
    case CONV(1,0):
164
0
    case CONV(1,1):
165
0
        for(i = 0; i < frame_len; i++)
166
0
        {
167
0
            real_t inp = input[hDecoder->internal_channel[0]][i];
168
169
0
            inp *= 256.0f;
170
0
            CLIP(inp, 8388607.0f, -8388608.0f);
171
172
0
            (*sample_buffer)[i] = (int32_t)lrintf(inp);
173
0
        }
174
0
        break;
175
197
    case CONV(2,0):
176
197
        if (hDecoder->upMatrix)
177
0
        {
178
0
            ch = hDecoder->internal_channel[0];
179
0
            for(i = 0; i < frame_len; i++)
180
0
            {
181
0
                real_t inp0 = input[ch][i];
182
183
0
                inp0 *= 256.0f;
184
0
                CLIP(inp0, 8388607.0f, -8388608.0f);
185
186
0
                (*sample_buffer)[(i*2)+0] = (int32_t)lrintf(inp0);
187
0
                (*sample_buffer)[(i*2)+1] = (int32_t)lrintf(inp0);
188
0
            }
189
197
        } else {
190
197
            ch  = hDecoder->internal_channel[0];
191
197
            ch1 = hDecoder->internal_channel[1];
192
331k
            for(i = 0; i < frame_len; i++)
193
331k
            {
194
331k
                real_t inp0 = input[ch ][i];
195
331k
                real_t inp1 = input[ch1][i];
196
197
331k
                inp0 *= 256.0f;
198
331k
                inp1 *= 256.0f;
199
331k
                CLIP(inp0, 8388607.0f, -8388608.0f);
200
331k
                CLIP(inp1, 8388607.0f, -8388608.0f);
201
202
331k
                (*sample_buffer)[(i*2)+0] = (int32_t)lrintf(inp0);
203
331k
                (*sample_buffer)[(i*2)+1] = (int32_t)lrintf(inp1);
204
331k
            }
205
197
        }
206
197
        break;
207
250
    default:
208
3.59k
        for (ch = 0; ch < channels; ch++)
209
3.34k
        {
210
4.77M
            for(i = 0; i < frame_len; i++)
211
4.77M
            {
212
4.77M
                real_t inp = get_sample(input, ch, i, hDecoder->downMatrix, hDecoder->internal_channel);
213
214
4.77M
                inp *= 256.0f;
215
4.77M
                CLIP(inp, 8388607.0f, -8388608.0f);
216
217
4.77M
                (*sample_buffer)[(i*channels)+ch] = (int32_t)lrintf(inp);
218
4.77M
            }
219
3.34k
        }
220
250
        break;
221
447
    }
222
447
}
223
224
static void to_PCM_32bit(NeAACDecStruct *hDecoder, real_t **input,
225
                         uint8_t channels, uint16_t frame_len,
226
                         int32_t **sample_buffer)
227
502
{
228
502
    uint8_t ch, ch1;
229
502
    uint16_t i;
230
231
502
    switch (CONV(channels,hDecoder->downMatrix))
232
502
    {
233
0
    case CONV(1,0):
234
0
    case CONV(1,1):
235
0
        for(i = 0; i < frame_len; i++)
236
0
        {
237
0
            real_t inp = input[hDecoder->internal_channel[0]][i];
238
239
0
            inp *= 65536.0f;
240
0
            CLIP(inp, 2147483647.0f, -2147483648.0f);
241
242
0
            (*sample_buffer)[i] = (int32_t)lrintf(inp);
243
0
        }
244
0
        break;
245
281
    case CONV(2,0):
246
281
        if (hDecoder->upMatrix)
247
0
        {
248
0
            ch = hDecoder->internal_channel[0];
249
0
            for(i = 0; i < frame_len; i++)
250
0
            {
251
0
                real_t inp0 = input[ch][i];
252
253
0
                inp0 *= 65536.0f;
254
0
                CLIP(inp0, 2147483647.0f, -2147483648.0f);
255
256
0
                (*sample_buffer)[(i*2)+0] = (int32_t)lrintf(inp0);
257
0
                (*sample_buffer)[(i*2)+1] = (int32_t)lrintf(inp0);
258
0
            }
259
281
        } else {
260
281
            ch  = hDecoder->internal_channel[0];
261
281
            ch1 = hDecoder->internal_channel[1];
262
467k
            for(i = 0; i < frame_len; i++)
263
467k
            {
264
467k
                real_t inp0 = input[ch ][i];
265
467k
                real_t inp1 = input[ch1][i];
266
267
467k
                inp0 *= 65536.0f;
268
467k
                inp1 *= 65536.0f;
269
467k
                CLIP(inp0, 2147483647.0f, -2147483648.0f);
270
467k
                CLIP(inp1, 2147483647.0f, -2147483648.0f);
271
272
467k
                (*sample_buffer)[(i*2)+0] = (int32_t)lrintf(inp0);
273
467k
                (*sample_buffer)[(i*2)+1] = (int32_t)lrintf(inp1);
274
467k
            }
275
281
        }
276
281
        break;
277
221
    default:
278
2.03k
        for (ch = 0; ch < channels; ch++)
279
1.81k
        {
280
2.62M
            for(i = 0; i < frame_len; i++)
281
2.62M
            {
282
2.62M
                real_t inp = get_sample(input, ch, i, hDecoder->downMatrix, hDecoder->internal_channel);
283
284
2.62M
                inp *= 65536.0f;
285
2.62M
                CLIP(inp, 2147483647.0f, -2147483648.0f);
286
287
2.62M
                (*sample_buffer)[(i*channels)+ch] = (int32_t)lrintf(inp);
288
2.62M
            }
289
1.81k
        }
290
221
        break;
291
502
    }
292
502
}
293
294
static void to_PCM_float(NeAACDecStruct *hDecoder, real_t **input,
295
                         uint8_t channels, uint16_t frame_len,
296
                         float32_t **sample_buffer)
297
224
{
298
224
    uint8_t ch, ch1;
299
224
    uint16_t i;
300
301
224
    switch (CONV(channels,hDecoder->downMatrix))
302
224
    {
303
0
    case CONV(1,0):
304
0
    case CONV(1,1):
305
0
        for(i = 0; i < frame_len; i++)
306
0
        {
307
0
            real_t inp = input[hDecoder->internal_channel[0]][i];
308
0
            (*sample_buffer)[i] = inp*FLOAT_SCALE;
309
0
        }
310
0
        break;
311
97
    case CONV(2,0):
312
97
        if (hDecoder->upMatrix)
313
0
        {
314
0
            ch = hDecoder->internal_channel[0];
315
0
            for(i = 0; i < frame_len; i++)
316
0
            {
317
0
                real_t inp0 = input[ch][i];
318
0
                (*sample_buffer)[(i*2)+0] = inp0*FLOAT_SCALE;
319
0
                (*sample_buffer)[(i*2)+1] = inp0*FLOAT_SCALE;
320
0
            }
321
97
        } else {
322
97
            ch  = hDecoder->internal_channel[0];
323
97
            ch1 = hDecoder->internal_channel[1];
324
148k
            for(i = 0; i < frame_len; i++)
325
148k
            {
326
148k
                real_t inp0 = input[ch ][i];
327
148k
                real_t inp1 = input[ch1][i];
328
148k
                (*sample_buffer)[(i*2)+0] = inp0*FLOAT_SCALE;
329
148k
                (*sample_buffer)[(i*2)+1] = inp1*FLOAT_SCALE;
330
148k
            }
331
97
        }
332
97
        break;
333
127
    default:
334
1.14k
        for (ch = 0; ch < channels; ch++)
335
1.02k
        {
336
1.59M
            for(i = 0; i < frame_len; i++)
337
1.59M
            {
338
1.59M
                real_t inp = get_sample(input, ch, i, hDecoder->downMatrix, hDecoder->internal_channel);
339
1.59M
                (*sample_buffer)[(i*channels)+ch] = inp*FLOAT_SCALE;
340
1.59M
            }
341
1.02k
        }
342
127
        break;
343
224
    }
344
224
}
345
346
static void to_PCM_double(NeAACDecStruct *hDecoder, real_t **input,
347
                          uint8_t channels, uint16_t frame_len,
348
                          double **sample_buffer)
349
222
{
350
222
    uint8_t ch, ch1;
351
222
    uint16_t i;
352
353
222
    switch (CONV(channels,hDecoder->downMatrix))
354
222
    {
355
0
    case CONV(1,0):
356
0
    case CONV(1,1):
357
0
        for(i = 0; i < frame_len; i++)
358
0
        {
359
0
            real_t inp = input[hDecoder->internal_channel[0]][i];
360
0
            (*sample_buffer)[i] = (double)inp*FLOAT_SCALE;
361
0
        }
362
0
        break;
363
66
    case CONV(2,0):
364
66
        if (hDecoder->upMatrix)
365
0
        {
366
0
            ch = hDecoder->internal_channel[0];
367
0
            for(i = 0; i < frame_len; i++)
368
0
            {
369
0
                real_t inp0 = input[ch][i];
370
0
                (*sample_buffer)[(i*2)+0] = (double)inp0*FLOAT_SCALE;
371
0
                (*sample_buffer)[(i*2)+1] = (double)inp0*FLOAT_SCALE;
372
0
            }
373
66
        } else {
374
66
            ch  = hDecoder->internal_channel[0];
375
66
            ch1 = hDecoder->internal_channel[1];
376
79.1k
            for(i = 0; i < frame_len; i++)
377
79.1k
            {
378
79.1k
                real_t inp0 = input[ch ][i];
379
79.1k
                real_t inp1 = input[ch1][i];
380
79.1k
                (*sample_buffer)[(i*2)+0] = (double)inp0*FLOAT_SCALE;
381
79.1k
                (*sample_buffer)[(i*2)+1] = (double)inp1*FLOAT_SCALE;
382
79.1k
            }
383
66
        }
384
66
        break;
385
156
    default:
386
1.89k
        for (ch = 0; ch < channels; ch++)
387
1.73k
        {
388
2.68M
            for(i = 0; i < frame_len; i++)
389
2.68M
            {
390
2.68M
                real_t inp = get_sample(input, ch, i, hDecoder->downMatrix, hDecoder->internal_channel);
391
2.68M
                (*sample_buffer)[(i*channels)+ch] = (double)inp*FLOAT_SCALE;
392
2.68M
            }
393
1.73k
        }
394
156
        break;
395
222
    }
396
222
}
397
398
void *output_to_PCM(NeAACDecStruct *hDecoder,
399
                    real_t **input, void *sample_buffer, uint8_t channels,
400
                    uint16_t frame_len, uint8_t format)
401
2.08k
{
402
2.08k
    int16_t   *short_sample_buffer = (int16_t*)sample_buffer;
403
2.08k
    int32_t   *int_sample_buffer = (int32_t*)sample_buffer;
404
2.08k
    float32_t *float_sample_buffer = (float32_t*)sample_buffer;
405
2.08k
    double    *double_sample_buffer = (double*)sample_buffer;
406
407
#ifdef PROFILE
408
    int64_t count = faad_get_ts();
409
#endif
410
411
    /* Copy output to a standard PCM buffer */
412
2.08k
    switch (format)
413
2.08k
    {
414
692
    case FAAD_FMT_16BIT:
415
692
        to_PCM_16bit(hDecoder, input, channels, frame_len, &short_sample_buffer);
416
692
        break;
417
447
    case FAAD_FMT_24BIT:
418
447
        to_PCM_24bit(hDecoder, input, channels, frame_len, &int_sample_buffer);
419
447
        break;
420
502
    case FAAD_FMT_32BIT:
421
502
        to_PCM_32bit(hDecoder, input, channels, frame_len, &int_sample_buffer);
422
502
        break;
423
224
    case FAAD_FMT_FLOAT:
424
224
        to_PCM_float(hDecoder, input, channels, frame_len, &float_sample_buffer);
425
224
        break;
426
222
    case FAAD_FMT_DOUBLE:
427
222
        to_PCM_double(hDecoder, input, channels, frame_len, &double_sample_buffer);
428
222
        break;
429
2.08k
    }
430
431
#ifdef PROFILE
432
    count = faad_get_ts() - count;
433
    hDecoder->output_cycles += count;
434
#endif
435
436
2.08k
    return sample_buffer;
437
2.08k
}
438
439
#else
440
441
#define DM_MUL FRAC_CONST(0.3203772410170407) // 1/(1+sqrt(2) + 1/sqrt(2))
442
#define RSQRT2 FRAC_CONST(0.7071067811865475244) // 1/sqrt(2)
443
#define BOTH FRAC_CONST(0.2265409196609864215998) // 1/(sqrt(2) + 2 + 1)
444
445
static INLINE real_t get_sample(real_t **input, uint8_t channel, uint16_t sample,
446
                                uint8_t down_matrix, uint8_t up_matrix,
447
                                uint8_t *internal_channel)
448
{
449
    real_t C;
450
    if (up_matrix == 1)
451
        return input[internal_channel[0]][sample];
452
453
    if (!down_matrix)
454
        return input[internal_channel[channel]][sample];
455
456
    C = MUL_F(input[internal_channel[0]][sample], BOTH);
457
    if (channel == 0)
458
    {
459
        real_t L_S = MUL_F(input[internal_channel[3]][sample], BOTH);
460
        real_t core = MUL_F(input[internal_channel[1]][sample], DM_MUL);
461
        return core + C + L_S;
462
    } else {
463
        real_t R_S = MUL_F(input[internal_channel[4]][sample], BOTH);
464
        real_t core = MUL_F(input[internal_channel[2]][sample], DM_MUL);
465
        return core + C + R_S;
466
    }
467
}
468
469
void* output_to_PCM(NeAACDecStruct *hDecoder,
470
                    real_t **input, void *sample_buffer, uint8_t channels,
471
                    uint16_t frame_len, uint8_t format)
472
{
473
    uint8_t ch;
474
    uint16_t i;
475
    int16_t *short_sample_buffer = (int16_t*)sample_buffer;
476
    int32_t *int_sample_buffer = (int32_t*)sample_buffer;
477
    int32_t exp, half, sat_shift_mask;
478
479
    /* Copy output to a standard PCM buffer */
480
    for (ch = 0; ch < channels; ch++)
481
    {
482
        switch (format)
483
        {
484
        case FAAD_FMT_16BIT:
485
            for(i = 0; i < frame_len; i++)
486
            {
487
                int32_t tmp = get_sample(input, ch, i, hDecoder->downMatrix, hDecoder->upMatrix,
488
                    hDecoder->internal_channel);
489
                if (tmp >= 0)
490
                {
491
                    if (tmp <= 0x7FFFFFFF - (1 << (REAL_BITS-1)))
492
                        tmp += (1 << (REAL_BITS-1));
493
                    if (tmp >= REAL_CONST(32767))
494
                    {
495
                        tmp = REAL_CONST(32767);
496
                    }
497
                } else {
498
                    if (tmp >= (int32_t)0x80000000 + (1 << (REAL_BITS-1)))
499
                        tmp += -(1 << (REAL_BITS-1));
500
                    if (tmp <= REAL_CONST(-32768))
501
                    {
502
                        tmp = REAL_CONST(-32768);
503
                    }
504
                }
505
                tmp >>= REAL_BITS;
506
                short_sample_buffer[(i*channels)+ch] = (int16_t)tmp;
507
            }
508
            break;
509
        case FAAD_FMT_24BIT:
510
            for(i = 0; i < frame_len; i++)
511
            {
512
                int32_t tmp = get_sample(input, ch, i, hDecoder->downMatrix, hDecoder->upMatrix,
513
                    hDecoder->internal_channel);
514
                if (tmp >= 0)
515
                {
516
                    if (tmp <= 0x7FFFFFFF - (1 << (REAL_BITS-9)))
517
                        tmp += (1 << (REAL_BITS-9));
518
                    tmp >>= (REAL_BITS-8);
519
                    if (tmp >= 8388607)
520
                    {
521
                        tmp = 8388607;
522
                    }
523
                } else {
524
                    if (tmp >= (int32_t)0x80000000 + (1 << (REAL_BITS-9)))
525
                        tmp += -(1 << (REAL_BITS-9));
526
                    tmp >>= (REAL_BITS-8);
527
                    if (tmp <= -8388608)
528
                    {
529
                        tmp = -8388608;
530
                    }
531
                }
532
                int_sample_buffer[(i*channels)+ch] = (int32_t)tmp;
533
            }
534
            break;
535
        case FAAD_FMT_32BIT:
536
            exp = 16 - REAL_BITS;
537
            half = 1 << (exp - 1);
538
            sat_shift_mask = SAT_SHIFT_MASK(exp);
539
            for(i = 0; i < frame_len; i++)
540
            {
541
                int32_t tmp = get_sample(input, ch, i, hDecoder->downMatrix, hDecoder->upMatrix,
542
                    hDecoder->internal_channel);
543
                if (tmp >= 0)
544
                {
545
                    if (tmp <= 0x7FFFFFFF - half)
546
                        tmp += half;
547
                } else {
548
                    if (tmp >= (int32_t)0x80000000 + half)
549
                        tmp += -half;
550
                }
551
                tmp = SAT_SHIFT(tmp, exp, sat_shift_mask);
552
                int_sample_buffer[(i*channels)+ch] = tmp;
553
            }
554
            break;
555
        case FAAD_FMT_FIXED:
556
            for(i = 0; i < frame_len; i++)
557
            {
558
                real_t tmp = get_sample(input, ch, i, hDecoder->downMatrix, hDecoder->upMatrix,
559
                    hDecoder->internal_channel);
560
                int_sample_buffer[(i*channels)+ch] = (int32_t)tmp;
561
            }
562
            break;
563
        }
564
    }
565
566
    return sample_buffer;
567
}
568
569
#endif