Skip to content

Commit

Permalink
Fix for build failure reported in issue #39
Browse files Browse the repository at this point in the history
  • Loading branch information
Saketh Sathuvalli committed Jan 24, 2023
1 parent f587a22 commit 0be7db0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion decoder/ia_core_coder_decode_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2376,7 +2376,7 @@ IA_ERRORCODE ia_core_coder_dec_main(VOID *temp_handle, WORD8 *inbuffer, WORD8 *o
ia_audio_specific_config_struct *pstr_asc =
(ia_audio_specific_config_struct *)mpegh_dec_handle->ia_audio_specific_config;
ia_dec_data_struct *pstr_dec_data;
ia_mhas_pac_info pac_info = {};
ia_mhas_pac_info pac_info = {0};
ia_signals_3d *ia_signals_3da = &pstr_asc->str_usac_config.signals_3d;
ia_usac_decoder_config_struct *str_usac_dec_config =
&pstr_asc->str_usac_config.str_usac_dec_config;
Expand Down
2 changes: 1 addition & 1 deletion decoder/impeghd_metadata_preprocessor.c
Original file line number Diff line number Diff line change
Expand Up @@ -2163,7 +2163,7 @@ static IA_ERRORCODE impeghd_md_create_diffuse_part(
FLOAT32 **ptr_diffuse_out_buf = NULL;
FLOAT32 **ptr_diffuse_out_buf_decorr = NULL;
FLOAT32 oam_and_diffuse_gain[MAX_NUM_ELEMENTS];
ia_cicp_ls_geo_str str_ls_geo[CICP2GEOMETRY_MAX_LOUDSPEAKERS] = {};
ia_cicp_ls_geo_str str_ls_geo[CICP2GEOMETRY_MAX_LOUDSPEAKERS] = {0};
ia_mae_audio_scene_info *pstr_mae_asi = &pstr_asc->str_mae_asi;
ia_oam_dec_state_struct *pstr_oam_dec_state =
&pstr_dec_data->str_obj_ren_dec_state.str_obj_md_dec_state;
Expand Down

0 comments on commit 0be7db0

Please sign in to comment.