return 0;
}
-void free_pre_preprocessor(struct tplg_pre_processor *tplg_pp)
+void free_pre_processor(struct tplg_pre_processor *tplg_pp)
{
snd_output_close(tplg_pp->output);
snd_output_close(tplg_pp->dbg_output);
free(inc_path);
if (err < 0)
- free_pre_preprocessor(*tplg_pp);
+ free_pre_processor(*tplg_pp);
free(config);
return err;
}
return err;
/* free pre-processor */
- free_pre_preprocessor(tplg_pp);
+ free_pre_processor(tplg_pp);
return err;
}
err = load_topology(&tplg, pconfig, size, cflags);
/* free pre-processor */
- free_pre_preprocessor(tplg_pp);
+ free_pre_processor(tplg_pp);
} else {
err = load_topology(&tplg, config, config_size, cflags);
}
const char *pre_processor_defs, const char *inc_path);
int init_pre_processor(struct tplg_pre_processor **tplg_pp, snd_output_type_t type,
const char *output_file);
-void free_pre_preprocessor(struct tplg_pre_processor *tplg_pp);
+void free_pre_processor(struct tplg_pre_processor *tplg_pp);
#endif