- support of dmix asm code for x86-64.

This commit is contained in:
Takashi Iwai 2003-09-17 17:09:45 +00:00
parent af0c81d4af
commit 243027a824
5 changed files with 298 additions and 30 deletions

View file

@ -33,13 +33,13 @@
typedef void (mix_areas1_t)(unsigned int size,
volatile signed short *dst, signed short *src,
volatile signed int *sum, unsigned int dst_step,
unsigned int src_step, unsigned int sum_step);
volatile signed int *sum, size_t dst_step,
size_t src_step, size_t sum_step);
typedef void (mix_areas2_t)(unsigned int size,
volatile signed int *dst, signed int *src,
volatile signed int *sum, unsigned int dst_step,
unsigned int src_step, unsigned int sum_step);
volatile signed int *sum, size_t dst_step,
size_t src_step, size_t sum_step);
struct slave_params {
snd_pcm_format_t format;