• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /******************************************************************************
2  *
3  * Copyright (C) 2015 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 IMPD_DRC_UNI_DEC_H
21 #define IMPD_DRC_UNI_DEC_H
22 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26 
27 WORD32 impd_select_drc_coefficients(
28     ia_drc_config* drc_config, ia_uni_drc_coeffs_struct** drc_coefficients_drc,
29     WORD32* drc_coefficients_selected);
30 
31 WORD32 impd_init_selected_drc_set(
32     ia_drc_config* drc_config, ia_drc_params_struct* ia_drc_params_struct,
33     WORD32 audio_num_chan, WORD32 drc_set_id_selected,
34     WORD32 downmix_id_selected, ia_filter_banks_struct* ia_filter_banks_struct,
35     ia_overlap_params_struct* pstr_overlap_params);
36 
37 #ifdef __cplusplus
38 }
39 #endif
40 #endif
41