afc.c calls afh_init() twice. This does not really hurt as this
function is idempotent, but it causes the initialization log messages
to be printed twice.
This gets rid of the additional call to afh_init() which crept in
in commit
042767ce (Use self-made help to avoid recompilations on
version changes).
ret = -E_AFH_SYNTAX;
if (conf.inputs_num == 0)
goto out;
- afh_init();
for (i = 0; i < conf.inputs_num; i++) {
int ret2;
ret = mmap_full_file(conf.inputs[i], O_RDONLY, &audio_file_data,