Skip to content

Commit

Permalink
fir debug
Browse files Browse the repository at this point in the history
  • Loading branch information
softwarecki committed Sep 13, 2024
1 parent a87b3af commit 1aee3e5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/audio/eq_fir/eq_fir.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,12 +309,15 @@ static int eq_fir_free(struct processing_module *mod)
{
struct comp_data *cd = module_get_private_data(mod);

comp_info(mod->dev, "eq_fir_free()");
comp_info(mod->dev, "eq_fir_free() %d", __LINE__);

eq_fir_free_delaylines(cd);
comp_info(mod->dev, "eq_fir_free() %d", __LINE__);
comp_data_blob_handler_free(cd->model_handler);
comp_info(mod->dev, "eq_fir_free() %d", __LINE__);

rfree(cd);
comp_info(mod->dev, "eq_fir_free() %d", __LINE__);

return 0;
}
Expand Down

0 comments on commit 1aee3e5

Please sign in to comment.