Création d'un décodeur générique

This commit is contained in:
2025-10-27 20:42:16 +01:00
parent 0313492978
commit 5a785a445a
16 changed files with 427 additions and 71 deletions

View File

@@ -111,11 +111,7 @@ where
pcm_writer.shutdown().await.map_err(E::from)?;
match blocking_handle.await {
Ok(res) => res,
Err(err) => Err(E::from(format!(
"{} task failed: {}",
role,
err
))),
Err(err) => Err(E::from(format!("{} task failed: {}", role, err))),
}
})
}