| D | sound.c | 20 #include <most/core.h> 57 	void (*copy_fn)(void *alsa, void *most, unsigned int bytes); 119 static void alsa_to_most_memcpy(void *alsa, void *most, unsigned int bytes)  in alsa_to_most_memcpy()  argument 121 	memcpy(most, alsa, bytes);  in alsa_to_most_memcpy() 124 static void alsa_to_most_copy16(void *alsa, void *most, unsigned int bytes)  in alsa_to_most_copy16()  argument 126 	swap_copy16(most, alsa, bytes);  in alsa_to_most_copy16() 129 static void alsa_to_most_copy24(void *alsa, void *most, unsigned int bytes)  in alsa_to_most_copy24()  argument 131 	swap_copy24(most, alsa, bytes);  in alsa_to_most_copy24() 134 static void alsa_to_most_copy32(void *alsa, void *most, unsigned int bytes)  in alsa_to_most_copy32()  argument 136 	swap_copy32(most, alsa, bytes);  in alsa_to_most_copy32() [all …] 
 |