1 /****************************************************************************** 2 * * 3 * Copyright (C) 2018 The Android Open Source Project 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at: 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 * 17 ***************************************************************************** 18 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore 19 */ 20 #ifndef IXHEAACD_SBR_CONST_H 21 #define IXHEAACD_SBR_CONST_H 22 23 #define SBR_AMPLITUDE_RESOLUTION_1_5 0 24 #define SBR_AMPLITUDE_RESOLUTION_3_0 1 25 #define NOISE_FLOOR_OFFSET_INT 6 26 27 #define LOW 0 28 #define HIGH 1 29 30 #define DTDF_DIR_TIME 1 31 #define DTDF_DIR_FREQ 0 32 33 #define SBR_CYC_REDCY_CHK_BITS 10 34 35 #define SBR_SAMP_FEQ_LVL_DEF 2 36 #define SBR_CHANGE_LVL_DEF 1 37 #define SBR_NOISE_BND_DEF 2 38 39 #define SBR_BND_LIMIT_DEF 2 40 #define SBR_GAIN_LIMIT_DEF 2 41 #define SBR_INTERPOL_SAMP_FEQ_DEF 1 42 #define SBR_SMOOTH_LEN_DEF 1 43 44 #define SBR_AMPLITUDE_RESOLUTION_BITS 1 45 #define SBR_BEGIN_SAMP_FREQ_BITS 4 46 #define SBR_END_SAMP_FREQ_BITS 4 47 #define SBR_CROSS_OVER_BND_BITS 3 48 49 #define ESBR_CROSS_OVER_BND_BITS 4 50 #define ESBR_PRE_FLAT_BITS 1 51 #define ESBR_PVC_MODE_BITS 2 52 53 #define ESBR_HEADER_EXTRA_3_BITS 1 54 #define PVC_MODE_BITS 2 55 56 #define SBR_HDR_EXTR_1_BITS 1 57 #define SBR_HDR_EXTR_2_BITS 1 58 59 #define SBR_SAMP_FREQ_LVL_BITS 2 60 #define SBR_CHANGE_LVL_BITS 1 61 #define SBR_NOISE_BND_BITS 2 62 63 #define SBR_BND_LIMIT_BITS 2 64 #define SBR_GAIN_LIMIT_BITS 2 65 #define SBR_INTERPOL_SAMP_FREQ_BITS 1 66 #define SBR_SMOOTH_LEN_BITS 1 67 #define SBR_STOCK_HE2_BITS 1 68 #define SBR_HDR_RESERV_BITS 2 69 #define SBR_SCE_RESERV_BITS 4 70 71 #define SBR_COUPLNG_MODE_BITS 1 72 73 #define SBR_INVERSE_FILT_MODE_BITS 2 74 75 #define SBR_ENLARGED_DATA_BITS 1 76 #define SBR_CONT_SIZE_BITS 4 77 #define SBR_CONT_ESC_CNT_BITS 8 78 #define SBR_CONT_ID_BITS 2 79 80 #define SBR_DEL_COD_DIR_BITS 1 81 82 #define SBR_ADD_SINE_FLAG_BITS 1 83 84 #define SBR_BEGIN_ENVN_BITS_AMPLITUDE_RESOLUTION_3_0 6 85 #define SBR_BEGIN_ENVN_BITS_BALNCE_AMPLITUDE_RESOLUTION_3_0 5 86 #define SBR_BEGIN_NOISE_BITS_AMPLITUDE_RESOLUTION_3_0 5 87 #define SBR_BEGIN_NOISE_BITS_BALNCE_AMPLITUDE_RESOLUTION_3_0 5 88 89 #define SBR_BEGIN_ENVN_BITS_AMPLITUDE_RESOLUTION_1_5 7 90 #define SBR_BEGIN_ENVN_BITS_BALNCE_AMPLITUDE_RESOLUTION_1_5 6 91 92 #define NOISE_FLOOR_OFFSET 6.0f 93 94 #define QMF_BUFFER_SIZE 64 95 #define TIMESLOT_BUFFER_SIZE 78 96 97 #define MAX_NUM_QMF_BANDS_ESBR 128 98 99 #define SBR_HF_ADJ_OFFSET 2 100 #define MPS_SBR_DELAY (6) 101 102 #define MPS_SBR_DELAY_960 5 103 104 #define ESBR_HBE_DELAY_OFFSET (32) 105 106 #define ESBR_HBE_DELAY_OFFSET_960 30 107 108 #define HBE_OPER_WIN_LEN (13) 109 #define NO_QMF_SYNTH_CHANNELS 64 110 #define TWICE_QMF_SYNTH_CHANNELS_NUM 128 111 112 #define MAX_NO_COLS_VALUE 64 113 #define MAX_NO_COLS_VALUE_BY_2 (MAX_NO_COLS_VALUE >> 1) 114 115 #define MAX_QMF_X_INBUF_SIZE MAX_NO_COLS_VALUE 116 #define MAX_QMF_X_OUTBUF_SIZE \ 117 2 * MAX_QMF_X_INBUF_SIZE 118 119 #define MAX_QMF_X_IN_REAL_BUF (NO_QMF_SYNTH_CHANNELS * MAX_QMF_X_INBUF_SIZE) 120 #define MAX_QMF_X_IN_IMAG_BUF (NO_QMF_SYNTH_CHANNELS * MAX_QMF_X_INBUF_SIZE) 121 122 #define MAX_QMF_X_OUT_REAL_BUF (NO_QMF_SYNTH_CHANNELS * MAX_QMF_X_OUTBUF_SIZE) 123 #define MAX_QMF_X_OUT_IMAG_BUF (NO_QMF_SYNTH_CHANNELS * MAX_QMF_X_OUTBUF_SIZE) 124 125 #define X_INBUF_SIZE (MAX_FRAME_SIZE + NO_QMF_SYNTH_CHANNELS) 126 #define X_OUTBUF_SIZE (X_INBUF_SIZE * 2) 127 128 #define HBE_OPER_BLK_LEN_2 10 129 #define HBE_OPER_BLK_LEN_3 8 130 #define HBE_OPER_BLK_LEN_4 6 131 132 #define MAX_HBE_PERSISTENT_SIZE \ 133 (MAX_QMF_X_INBUF_SIZE * sizeof(FLOAT32*) + \ 134 MAX_QMF_X_OUTBUF_SIZE * sizeof(FLOAT32*) + \ 135 MAX_QMF_X_IN_REAL_BUF * sizeof(FLOAT32) + \ 136 MAX_QMF_X_IN_IMAG_BUF * sizeof(FLOAT32) + \ 137 MAX_QMF_X_OUT_REAL_BUF * sizeof(FLOAT32) + \ 138 MAX_QMF_X_OUT_IMAG_BUF * sizeof(FLOAT32) + X_INBUF_SIZE * sizeof(FLOAT32) + \ 139 X_OUTBUF_SIZE * sizeof(FLOAT32)) 140 141 #define MAX_QMF_BUF_LEN 78 142 143 #define SBR_FRAME_CLASS_BITS 2 144 #define SBR_VAR_BORD_BITS 2 145 #define SBR_FRQ_RES_BITS 1 146 #define SBR_REL_BITS 2 147 #define SBR_ENV_BITS 2 148 #define SBR_NUM_BITS 2 149 150 #define FIXFIX 0 151 #define FIXVAR 1 152 #define VARFIX 2 153 #define VARVAR 3 154 155 #define LEN_NIBBLE (4) 156 157 #define PI 3.14159265358979323846264338327950288 158 #define EPS 1e-12f 159 #define LOG2 0.69314718056f 160 161 #define MAX_STRETCH 4 162 #define MAXDEG 3 163 164 #define EXP_FOR_SQRT 0.5f 165 166 #define SBR_HF_RELAXATION_PARAM 0.999999f 167 168 #define ESBR_PATCHING_MODE_BITS 1 169 #define ESBR_OVERSAMPLING_FLAG_BITS 1 170 #define ESBR_PITCHIN_FLAG_BITS 1 171 #define ESBR_PITCHIN_BINS_BITS 7 172 #define ESBR_RESERVED_PRESENT 1 173 #define ESBR_RESERVED_BITS_DATA 4 174 #define ESBR_INVF_MODE_BITS 2 175 #define ESBR_NOISE_MODE_BITS 1 176 #define ESBR_DOMAIN_BITS 1 177 178 #define SBR_NUM_QMF_BANDS 64 179 #define SBR_NUM_QMF_BANDS_2 32 180 181 #define PVC_NUM_TIME_SLOTS 16 182 #define PVC_ESG_MIN_VAL 0.1f 183 184 #define PVC_10LOG10_ESG_MIN_VAL -10.0f 185 186 #define PVC_DIV_MODE_BITS 3 187 #define PVC_NS_MODE_BITS 1 188 #define PVC_GRID_INFO_BITS 1 189 #define PVC_REUSE_PVC_ID_BITS 1 190 #define PVC_ID_BITS 7 191 #define PVC_NB_HIGH_MODE1 8 192 #define PVC_NB_HIGH_MODE2 6 193 194 #define PVC_NB_LOW 3 195 #define PVC_ID_NUM_GROUPS 3 196 #define PVC_NB_HIGH 128 197 #define PVC_ID_NBIT 7 198 199 #define ESC_SIN_POS 31 200 #define MAX_OCTAVE 29 201 #define MAX_SECOND_REGION 50 202 203 #define SBR_ENERGY_PAN_OFFSET 12 204 #define SBR_ENV_SF_MAX_VAL_1_5 70 205 #define MAX_NOISE_FLOOR_FAC_VAL 35 206 #define MIN_NOISE_FLOOR_FAC_VAL 0 207 208 #define HBE_ZERO_BAND_IDX 6 209 210 #define MAX_OV_DELAY 12 211 212 #define LD_TRAN 1 213 #define LD_ENV_TIME_SLOT 7 214 #define LD_ENV_TBL_512 16 215 #define LD_ENV_TBL_480 15 216 #define LD_ENV_TBL_SIZE 4 217 #define SBR_TRAN_BITS 4 218 #define SBRLD_CLA_BITS 1 219 #define SBR_ENVT_NUMENV 0 220 #define SBR_ENVT_TRANIDX 3 221 222 static const int ixheaacd_ld_env_table_512[LD_ENV_TBL_512][LD_ENV_TBL_SIZE] = { 223 {2, 4, -1, 0}, {2, 5, -1, 0}, {3, 2, 6, 1}, {3, 3, 7, 1}, 224 {3, 4, 8, 1}, {3, 5, 9, 1}, {3, 6, 10, 1}, {3, 7, 11, 1}, 225 {3, 8, 12, 1}, {3, 9, 13, 1}, {3, 10, 14, 1}, {2, 11, -1, 1}, 226 {2, 12, -1, 1}, {2, 13, -1, 1}, {2, 14, -1, 1}, {2, 15, -1, 1}, 227 }; 228 229 static const int ixheaacd_ld_env_table_480[LD_ENV_TBL_480][LD_ENV_TBL_SIZE] = { 230 {2, 4, -1, 0}, {2, 5, -1, 0}, {3, 2, 6, 1}, {3, 3, 7, 1}, 231 {3, 4, 8, 1}, {3, 5, 9, 1}, {3, 6, 10, 1}, {3, 7, 11, 1}, 232 {3, 8, 12, 1}, {3, 9, 13, 1}, {2, 10, -1, 1}, {2, 11, -1, 1}, 233 {2, 12, -1, 1}, {2, 13, -1, 1}, {2, 14, -1, 1}, 234 }; 235 236 static const int ixheaacd_ld_env_table_time_slot[LD_ENV_TIME_SLOT] = { 237 8, 5, 0, 0, 0, 0, 0}; 238 239 #define SBR_CLA_BITS 2 240 #define SBR_ABS_BITS 2 241 #define SBR_RES_BITS 1 242 #define SBR_REL_BITS 2 243 #define SBR_ENV_BITS 2 244 #define SBR_NUM_BITS 2 245 246 #define FIXFIX 0 247 #define FIXVAR 1 248 #define VARFIX 2 249 #define VARVAR 3 250 251 #define LEN_NIBBLE (4) 252 253 #endif 254