xref: /aosp_15_r20/external/libxaac/encoder/ixheaace_adjust_threshold.h (revision 15dc779a375ca8b5125643b829a8aa4b70d7f451)
1*15dc779aSAndroid Build Coastguard Worker /******************************************************************************
2*15dc779aSAndroid Build Coastguard Worker  *                                                                            *
3*15dc779aSAndroid Build Coastguard Worker  * Copyright (C) 2023 The Android Open Source Project
4*15dc779aSAndroid Build Coastguard Worker  *
5*15dc779aSAndroid Build Coastguard Worker  * Licensed under the Apache License, Version 2.0 (the "License");
6*15dc779aSAndroid Build Coastguard Worker  * you may not use this file except in compliance with the License.
7*15dc779aSAndroid Build Coastguard Worker  * You may obtain a copy of the License at:
8*15dc779aSAndroid Build Coastguard Worker  *
9*15dc779aSAndroid Build Coastguard Worker  * http://www.apache.org/licenses/LICENSE-2.0
10*15dc779aSAndroid Build Coastguard Worker  *
11*15dc779aSAndroid Build Coastguard Worker  * Unless required by applicable law or agreed to in writing, software
12*15dc779aSAndroid Build Coastguard Worker  * distributed under the License is distributed on an "AS IS" BASIS,
13*15dc779aSAndroid Build Coastguard Worker  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*15dc779aSAndroid Build Coastguard Worker  * See the License for the specific language governing permissions and
15*15dc779aSAndroid Build Coastguard Worker  * limitations under the License.
16*15dc779aSAndroid Build Coastguard Worker  *
17*15dc779aSAndroid Build Coastguard Worker  *****************************************************************************
18*15dc779aSAndroid Build Coastguard Worker  * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
19*15dc779aSAndroid Build Coastguard Worker  */
20*15dc779aSAndroid Build Coastguard Worker 
21*15dc779aSAndroid Build Coastguard Worker #pragma once
22*15dc779aSAndroid Build Coastguard Worker enum _avoid_hole_state { NO_AH = 0, AH_INACTIVE = 1, AH_ACTIVE = 2 };
23*15dc779aSAndroid Build Coastguard Worker 
24*15dc779aSAndroid Build Coastguard Worker typedef struct {
25*15dc779aSAndroid Build Coastguard Worker   FLOAT32 *sfb_ld_energy;
26*15dc779aSAndroid Build Coastguard Worker   FLOAT32 *sfb_lines;
27*15dc779aSAndroid Build Coastguard Worker   FLOAT32 sfb_pe[MAXIMUM_GROUPED_SCALE_FACTOR_BAND];
28*15dc779aSAndroid Build Coastguard Worker   FLOAT32 sfb_const_part[MAXIMUM_GROUPED_SCALE_FACTOR_BAND];
29*15dc779aSAndroid Build Coastguard Worker   FLOAT32 num_sfb_active_lines[MAXIMUM_GROUPED_SCALE_FACTOR_BAND];
30*15dc779aSAndroid Build Coastguard Worker   FLOAT32 pe;
31*15dc779aSAndroid Build Coastguard Worker   FLOAT32 const_part;
32*15dc779aSAndroid Build Coastguard Worker   FLOAT32 num_active_lines;
33*15dc779aSAndroid Build Coastguard Worker } ia_qc_pe_chan_data_struct;
34*15dc779aSAndroid Build Coastguard Worker 
35*15dc779aSAndroid Build Coastguard Worker typedef struct {
36*15dc779aSAndroid Build Coastguard Worker   ia_qc_pe_chan_data_struct pe_ch_data[30];
37*15dc779aSAndroid Build Coastguard Worker   FLOAT32 pe;
38*15dc779aSAndroid Build Coastguard Worker   FLOAT32 const_part;
39*15dc779aSAndroid Build Coastguard Worker   FLOAT32 num_active_lines;
40*15dc779aSAndroid Build Coastguard Worker   FLOAT32 offset;
41*15dc779aSAndroid Build Coastguard Worker } ia_qc_pe_data_struct;
42*15dc779aSAndroid Build Coastguard Worker 
43*15dc779aSAndroid Build Coastguard Worker VOID iaace_adj_thr_init(ia_adj_thr_state_struct *pstr_adj_thr_state, const FLOAT32 mean_pe,
44*15dc779aSAndroid Build Coastguard Worker                         WORD32 ch_bitrate, WORD32 aot);
45*15dc779aSAndroid Build Coastguard Worker 
46*15dc779aSAndroid Build Coastguard Worker VOID iaace_adjust_threshold(ia_adj_thr_state_struct *pstr_adj_thr_state,
47*15dc779aSAndroid Build Coastguard Worker                             ia_adj_thr_elem_struct *pstr_adj_thr_elem,
48*15dc779aSAndroid Build Coastguard Worker                             ixheaace_psy_out_channel **pstr_psy_out,
49*15dc779aSAndroid Build Coastguard Worker                             FLOAT32 *ptr_ch_bit_dist, ixheaace_qc_out_element *pstr_qc_out_el,
50*15dc779aSAndroid Build Coastguard Worker                             const WORD32 avg_bits, const WORD32 bitres_bits,
51*15dc779aSAndroid Build Coastguard Worker                             const WORD32 max_bitres_bits, const WORD32 side_info_bits,
52*15dc779aSAndroid Build Coastguard Worker                             FLOAT32 *max_bit_fac, FLOAT32 *ptr_sfb_num_relevant_lines,
53*15dc779aSAndroid Build Coastguard Worker                             FLOAT32 *ptr_sfb_ld_energy, WORD32 num_chans, WORD32 chn, WORD32 aot,
54*15dc779aSAndroid Build Coastguard Worker                             WORD8 *ptr_scratch);
55