/proc/self/cwd/libfaad/is.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: is.c,v 1.28 2007/11/01 12:33:31 menno Exp $ |
29 | | **/ |
30 | | |
31 | | #include "common.h" |
32 | | #include "structs.h" |
33 | | |
34 | | #include "syntax.h" |
35 | | #include "is.h" |
36 | | |
37 | | #ifdef FIXED_POINT |
38 | | static real_t pow05_table[] = { |
39 | | COEF_CONST(1.0), /* 0.5^( 0/4) */ |
40 | | COEF_CONST(0.84089641525371), /* 0.5^(+1/4) */ |
41 | | COEF_CONST(0.70710678118655), /* 0.5^(+2/4) */ |
42 | | COEF_CONST(0.59460355750136) /* 0.5^(+3/4) */ |
43 | | }; |
44 | | #endif |
45 | | |
46 | | void is_decode(ic_stream *ics, ic_stream *icsr, real_t *l_spec, real_t *r_spec, |
47 | | uint16_t frame_len) |
48 | 74.6k | { |
49 | 74.6k | uint8_t g, sfb, b; |
50 | 74.6k | uint16_t i; |
51 | 74.6k | real_t scale; |
52 | | #ifdef FIXED_POINT |
53 | | int32_t exp, frac; |
54 | | #endif |
55 | | |
56 | 74.6k | uint16_t nshort = frame_len/8; |
57 | 74.6k | uint8_t group = 0; |
58 | | |
59 | 232k | for (g = 0; g < icsr->num_window_groups; g++) |
60 | 157k | { |
61 | | /* Do intensity stereo decoding */ |
62 | 336k | for (b = 0; b < icsr->window_group_length[g]; b++) |
63 | 178k | { |
64 | 366k | for (sfb = 0; sfb < icsr->max_sfb; sfb++) |
65 | 188k | { |
66 | 188k | if (is_intensity(icsr, g, sfb)) |
67 | 24.3k | { |
68 | 24.3k | int16_t scale_factor = icsr->scale_factors[g][sfb]; |
69 | | #ifdef MAIN_DEC |
70 | | /* For scalefactor bands coded in intensity stereo the |
71 | | corresponding predictors in the right channel are |
72 | | switched to "off". |
73 | | */ |
74 | | ics->pred.prediction_used[sfb] = 0; |
75 | | icsr->pred.prediction_used[sfb] = 0; |
76 | | #endif |
77 | | |
78 | | #ifndef FIXED_POINT |
79 | 17.2k | scale_factor = min(max(scale_factor, -120), 120); |
80 | | scale = (real_t)pow(0.5, (0.25*scale_factor)); |
81 | | #else |
82 | 7.07k | scale_factor = min(max(scale_factor, -60), 60); |
83 | | exp = scale_factor >> 2; /* exp is -15..15 */ |
84 | | frac = scale_factor & 3; |
85 | | scale = pow05_table[frac]; |
86 | 7.07k | exp += COEF_BITS - REAL_BITS; /* exp is -1..29 */ |
87 | 7.07k | if (exp < 0) |
88 | 742 | scale <<= -exp; |
89 | 6.33k | else |
90 | 6.33k | scale >>= exp; |
91 | | #endif |
92 | | |
93 | | /* Scale from left to right channel, |
94 | | do not touch left channel */ |
95 | 187k | for (i = icsr->swb_offset[sfb]; i < min(icsr->swb_offset[sfb+1], ics->swb_offset_max); i++) |
96 | 163k | { |
97 | 163k | r_spec[(group*nshort)+i] = MUL_R(l_spec[(group*nshort)+i], scale); |
98 | 163k | if (is_intensity(icsr, g, sfb) != invert_intensity(ics, g, sfb)) |
99 | 60.3k | r_spec[(group*nshort)+i] = -r_spec[(group*nshort)+i]; |
100 | 163k | } |
101 | 24.3k | } |
102 | 188k | } |
103 | 178k | group++; |
104 | 178k | } |
105 | 157k | } |
106 | 74.6k | } Line | Count | Source | 48 | 30.3k | { | 49 | 30.3k | uint8_t g, sfb, b; | 50 | 30.3k | uint16_t i; | 51 | 30.3k | real_t scale; | 52 | 30.3k | #ifdef FIXED_POINT | 53 | 30.3k | int32_t exp, frac; | 54 | 30.3k | #endif | 55 | | | 56 | 30.3k | uint16_t nshort = frame_len/8; | 57 | 30.3k | uint8_t group = 0; | 58 | | | 59 | 95.7k | for (g = 0; g < icsr->num_window_groups; g++) | 60 | 65.4k | { | 61 | | /* Do intensity stereo decoding */ | 62 | 141k | for (b = 0; b < icsr->window_group_length[g]; b++) | 63 | 75.9k | { | 64 | 164k | for (sfb = 0; sfb < icsr->max_sfb; sfb++) | 65 | 88.7k | { | 66 | 88.7k | if (is_intensity(icsr, g, sfb)) | 67 | 7.07k | { | 68 | 7.07k | int16_t scale_factor = icsr->scale_factors[g][sfb]; | 69 | | #ifdef MAIN_DEC | 70 | | /* For scalefactor bands coded in intensity stereo the | 71 | | corresponding predictors in the right channel are | 72 | | switched to "off". | 73 | | */ | 74 | | ics->pred.prediction_used[sfb] = 0; | 75 | | icsr->pred.prediction_used[sfb] = 0; | 76 | | #endif | 77 | | | 78 | | #ifndef FIXED_POINT | 79 | | scale_factor = min(max(scale_factor, -120), 120); | 80 | | scale = (real_t)pow(0.5, (0.25*scale_factor)); | 81 | | #else | 82 | 7.07k | scale_factor = min(max(scale_factor, -60), 60); | 83 | 7.07k | exp = scale_factor >> 2; /* exp is -15..15 */ | 84 | 7.07k | frac = scale_factor & 3; | 85 | 7.07k | scale = pow05_table[frac]; | 86 | 7.07k | exp += COEF_BITS - REAL_BITS; /* exp is -1..29 */ | 87 | 7.07k | if (exp < 0) | 88 | 742 | scale <<= -exp; | 89 | 6.33k | else | 90 | 6.33k | scale >>= exp; | 91 | 7.07k | #endif | 92 | | | 93 | | /* Scale from left to right channel, | 94 | | do not touch left channel */ | 95 | 57.3k | for (i = icsr->swb_offset[sfb]; i < min(icsr->swb_offset[sfb+1], ics->swb_offset_max); i++) | 96 | 50.2k | { | 97 | 50.2k | r_spec[(group*nshort)+i] = MUL_R(l_spec[(group*nshort)+i], scale); | 98 | 50.2k | if (is_intensity(icsr, g, sfb) != invert_intensity(ics, g, sfb)) | 99 | 30.7k | r_spec[(group*nshort)+i] = -r_spec[(group*nshort)+i]; | 100 | 50.2k | } | 101 | 7.07k | } | 102 | 88.7k | } | 103 | 75.9k | group++; | 104 | 75.9k | } | 105 | 65.4k | } | 106 | 30.3k | } |
Line | Count | Source | 48 | 44.3k | { | 49 | 44.3k | uint8_t g, sfb, b; | 50 | 44.3k | uint16_t i; | 51 | 44.3k | real_t scale; | 52 | | #ifdef FIXED_POINT | 53 | | int32_t exp, frac; | 54 | | #endif | 55 | | | 56 | 44.3k | uint16_t nshort = frame_len/8; | 57 | 44.3k | uint8_t group = 0; | 58 | | | 59 | 136k | for (g = 0; g < icsr->num_window_groups; g++) | 60 | 92.3k | { | 61 | | /* Do intensity stereo decoding */ | 62 | 195k | for (b = 0; b < icsr->window_group_length[g]; b++) | 63 | 102k | { | 64 | 202k | for (sfb = 0; sfb < icsr->max_sfb; sfb++) | 65 | 99.3k | { | 66 | 99.3k | if (is_intensity(icsr, g, sfb)) | 67 | 17.2k | { | 68 | 17.2k | int16_t scale_factor = icsr->scale_factors[g][sfb]; | 69 | 17.2k | #ifdef MAIN_DEC | 70 | | /* For scalefactor bands coded in intensity stereo the | 71 | | corresponding predictors in the right channel are | 72 | | switched to "off". | 73 | | */ | 74 | 17.2k | ics->pred.prediction_used[sfb] = 0; | 75 | 17.2k | icsr->pred.prediction_used[sfb] = 0; | 76 | 17.2k | #endif | 77 | | | 78 | 17.2k | #ifndef FIXED_POINT | 79 | 17.2k | scale_factor = min(max(scale_factor, -120), 120); | 80 | 17.2k | scale = (real_t)pow(0.5, (0.25*scale_factor)); | 81 | | #else | 82 | | scale_factor = min(max(scale_factor, -60), 60); | 83 | | exp = scale_factor >> 2; /* exp is -15..15 */ | 84 | | frac = scale_factor & 3; | 85 | | scale = pow05_table[frac]; | 86 | | exp += COEF_BITS - REAL_BITS; /* exp is -1..29 */ | 87 | | if (exp < 0) | 88 | | scale <<= -exp; | 89 | | else | 90 | | scale >>= exp; | 91 | | #endif | 92 | | | 93 | | /* Scale from left to right channel, | 94 | | do not touch left channel */ | 95 | 130k | for (i = icsr->swb_offset[sfb]; i < min(icsr->swb_offset[sfb+1], ics->swb_offset_max); i++) | 96 | 112k | { | 97 | 112k | r_spec[(group*nshort)+i] = MUL_R(l_spec[(group*nshort)+i], scale); | 98 | 112k | if (is_intensity(icsr, g, sfb) != invert_intensity(ics, g, sfb)) | 99 | 29.5k | r_spec[(group*nshort)+i] = -r_spec[(group*nshort)+i]; | 100 | 112k | } | 101 | 17.2k | } | 102 | 99.3k | } | 103 | 102k | group++; | 104 | 102k | } | 105 | 92.3k | } | 106 | 44.3k | } |
|