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 IMPD_DRC_PARSER_INTERFACE_H 21 #define IMPD_DRC_PARSER_INTERFACE_H 22 23 WORD32 24 impd_unidrc_interface_signature_read( 25 ia_bit_buf_struct* it_bit_buff, 26 ia_drc_uni_interface_signat_struct* drc_uni_interface_signature); 27 28 WORD32 29 impd_sys_interface_read(ia_bit_buf_struct* it_bit_buff, 30 ia_system_interface_struct* system_interface); 31 32 WORD32 33 impd_loudness_norm_control_interface_read( 34 ia_bit_buf_struct* it_bit_buff, 35 ia_loudness_norm_ctrl_interface_struct* loudness_norm_ctrl_interface); 36 37 WORD32 38 impd_loudness_norm_param_interface_read( 39 ia_bit_buf_struct* it_bit_buff, 40 ia_loudness_norm_parameter_interface_struct* loudness_norm_param_interface); 41 42 WORD32 43 impd_drc_interface_read(ia_bit_buf_struct* it_bit_buff, 44 ia_dyn_rng_ctrl_interface_struct* drc_ctrl_interface); 45 46 WORD32 47 impd_drc_param_interface_read( 48 ia_bit_buf_struct* it_bit_buff, 49 ia_drc_parameter_interface_struct* drc_parameter_interface); 50 51 WORD32 52 impd_unidrc_interface_extension_read( 53 ia_bit_buf_struct* it_bit_buff, 54 ia_drc_interface_struct* impd_drc_uni_interface, 55 ia_drc_uni_interface_ext_struct* drc_uni_interface_ext); 56 57 WORD32 58 impd_unidrc_interface_read(ia_bit_buf_struct* it_bit_buff, 59 ia_drc_interface_struct* impd_drc_uni_interface); 60 61 #endif 62