Home | History | Annotate | Download | only in decoder
      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_PVC_ROM_H
     21 #define IXHEAACD_PVC_ROM_H
     22 
     23 extern const FLOAT32 ixheaacd_pvc_smoothing_wind_tab_ns4[4];
     24 extern const FLOAT32 ixheaacd_pvc_smoothing_wind_tab_ns16[16];
     25 
     26 extern const FLOAT32 ixheaacd_pvc_smoothing_wind_tab_ns3[3];
     27 extern const FLOAT32 ixheaacd_pvc_smoothing_wind_tab_ns12[12];
     28 
     29 extern const UWORD8
     30     ixheaacd_pred_coeff_pvc_id_boundaries_1[PVC_ID_NUM_GROUPS - 1];
     31 
     32 extern const FLOAT32 ixheaacd_q_factor_table_mode_1[PVC_NB_LOW + 1];
     33 
     34 extern const WORD8 ixheaacd_pred_coeff_table_1_mode_1[PVC_ID_NUM_GROUPS]
     35                                                      [PVC_NB_LOW]
     36                                                      [PVC_NB_HIGH_MODE1];
     37 
     38 extern const WORD8 ixheaacd_pred_coeff_table_2_mode_1[PVC_NB_HIGH]
     39                                                      [PVC_NB_HIGH_MODE1];
     40 
     41 extern const UWORD8
     42     ixheaacd_pred_coeff_pvc_id_boundaries_2[PVC_ID_NUM_GROUPS - 1];
     43 
     44 extern const FLOAT32 ixheaacd_q_factor_table_mode_2[PVC_NB_LOW + 1];
     45 
     46 extern const WORD8 ixheaacd_pred_coeff_table_1_mode_2[PVC_ID_NUM_GROUPS]
     47                                                      [PVC_NB_LOW]
     48                                                      [PVC_NB_HIGH_MODE2];
     49 
     50 extern const WORD8 ixheaacd_pred_coeff_table_2_mode_2[PVC_NB_HIGH]
     51                                                      [PVC_NB_HIGH_MODE2];
     52 
     53 #endif
     54