Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * This file is part of FFmpeg. | ||
3 | * | ||
4 | * FFmpeg is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU Lesser General Public | ||
6 | * License as published by the Free Software Foundation; either | ||
7 | * version 2.1 of the License, or (at your option) any later version. | ||
8 | * | ||
9 | * FFmpeg is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
12 | * Lesser General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU Lesser General Public | ||
15 | * License along with FFmpeg; if not, write to the Free Software | ||
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
17 | */ | ||
18 | |||
19 | #ifndef AVCODEC_AACENCDSP_H | ||
20 | #define AVCODEC_AACENCDSP_H | ||
21 | |||
22 | #include <math.h> | ||
23 | |||
24 | #include "config.h" | ||
25 | |||
26 | #include "libavutil/macros.h" | ||
27 | |||
28 | typedef struct AACEncDSPContext { | ||
29 | void (*abs_pow34)(float *out, const float *in, const int size); | ||
30 | void (*quant_bands)(int *out, const float *in, const float *scaled, | ||
31 | int size, int is_signed, int maxval, const float Q34, | ||
32 | const float rounding); | ||
33 | } AACEncDSPContext; | ||
34 | |||
35 | void ff_aacenc_dsp_init_riscv(AACEncDSPContext *s); | ||
36 | void ff_aacenc_dsp_init_x86(AACEncDSPContext *s); | ||
37 | |||
38 | 700658 | static inline void abs_pow34_v(float *out, const float *in, const int size) | |
39 | { | ||
40 |
2/2✓ Branch 0 taken 36497400 times.
✓ Branch 1 taken 700658 times.
|
37198058 | for (int i = 0; i < size; i++) { |
41 | 36497400 | float a = fabsf(in[i]); | |
42 | 36497400 | out[i] = sqrtf(a * sqrtf(a)); | |
43 | } | ||
44 | 700658 | } | |
45 | |||
46 | 7557071 | static inline void quantize_bands(int *out, const float *in, const float *scaled, | |
47 | int size, int is_signed, int maxval, const float Q34, | ||
48 | const float rounding) | ||
49 | { | ||
50 |
2/2✓ Branch 0 taken 154655180 times.
✓ Branch 1 taken 7557071 times.
|
162212251 | for (int i = 0; i < size; i++) { |
51 | 154655180 | float qc = scaled[i] * Q34; | |
52 |
2/2✓ Branch 0 taken 15789745 times.
✓ Branch 1 taken 138865435 times.
|
154655180 | int tmp = (int)FFMIN(qc + rounding, (float)maxval); |
53 |
4/4✓ Branch 0 taken 65029400 times.
✓ Branch 1 taken 89625780 times.
✓ Branch 2 taken 32325570 times.
✓ Branch 3 taken 32703830 times.
|
154655180 | if (is_signed && in[i] < 0.0f) { |
54 | 32325570 | tmp = -tmp; | |
55 | } | ||
56 | 154655180 | out[i] = tmp; | |
57 | } | ||
58 | 7557071 | } | |
59 | |||
60 | 24 | static inline void ff_aacenc_dsp_init(AACEncDSPContext *s) | |
61 | { | ||
62 | 24 | s->abs_pow34 = abs_pow34_v; | |
63 | 24 | s->quant_bands = quantize_bands; | |
64 | |||
65 | #if ARCH_RISCV | ||
66 | ff_aacenc_dsp_init_riscv(s); | ||
67 | #elif ARCH_X86 | ||
68 | 24 | ff_aacenc_dsp_init_x86(s); | |
69 | #endif | ||
70 | 24 | } | |
71 | |||
72 | #endif | ||
73 |