audioconvert: expose the selected function names

And debug them.
This commit is contained in:
Wim Taymans 2022-06-28 16:45:07 +02:00
parent 048e10ee3b
commit 51f4f1fb69
8 changed files with 77 additions and 48 deletions

View file

@ -34,10 +34,13 @@ typedef void (*resample_func_t)(struct resample *r,
struct resample_info {
uint32_t format;
uint32_t cpu_flags;
resample_func_t process_copy;
const char *copy_name;
resample_func_t process_full;
const char *full_name;
resample_func_t process_inter;
const char *inter_name;
uint32_t cpu_flags;
};
struct native_data {