diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2007-12-10 12:31:29 +0100 |
---|---|---|
committer | Clemens Ladisch <clemens@ladisch.de> | 2007-12-10 12:31:29 +0100 |
commit | 79db4a6bfa3c164540b9336ef6175e07e83e060d (patch) | |
tree | a1945c5edcdbdb37b917d4cbdb0bf138de4e6c1a /src/pcm/pcm_dmix_x86_64.h | |
parent | de2b7a42d740d544f478d9b5d5ce90301862fdd1 (diff) | |
download | alsa-lib-79db4a6bfa3c164540b9336ef6175e07e83e060d.tar.gz |
dmix: rename mix_areas*
Rename all mix_areas* symbols so that they contain the sample width
instead of some meaningless number.
Diffstat (limited to 'src/pcm/pcm_dmix_x86_64.h')
-rw-r--r-- | src/pcm/pcm_dmix_x86_64.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/pcm/pcm_dmix_x86_64.h b/src/pcm/pcm_dmix_x86_64.h index a6e92704..6ad81337 100644 --- a/src/pcm/pcm_dmix_x86_64.h +++ b/src/pcm/pcm_dmix_x86_64.h @@ -30,10 +30,10 @@ /* * MMX optimized */ -static void MIX_AREAS1(unsigned int size, - volatile signed short *dst, signed short *src, - volatile signed int *sum, size_t dst_step, - size_t src_step, size_t sum_step) +static void MIX_AREAS_16(unsigned int size, + volatile signed short *dst, signed short *src, + volatile signed int *sum, size_t dst_step, + size_t src_step, size_t sum_step) { unsigned long long old_rbx; @@ -125,10 +125,10 @@ static void MIX_AREAS1(unsigned int size, /* * 32-bit version (24-bit resolution) */ -static void MIX_AREAS2(unsigned int size, - volatile signed int *dst, signed int *src, - volatile signed int *sum, size_t dst_step, - size_t src_step, size_t sum_step) +static void MIX_AREAS_32(unsigned int size, + volatile signed int *dst, signed int *src, + volatile signed int *sum, size_t dst_step, + size_t src_step, size_t sum_step) { unsigned long long old_rbx; @@ -240,10 +240,10 @@ static void MIX_AREAS2(unsigned int size, /* * 24-bit version */ -static void MIX_AREAS3(unsigned int size, - volatile unsigned char *dst, unsigned char *src, - volatile signed int *sum, size_t dst_step, - size_t src_step, size_t sum_step) +static void MIX_AREAS_24(unsigned int size, + volatile unsigned char *dst, unsigned char *src, + volatile signed int *sum, size_t dst_step, + size_t src_step, size_t sum_step) { unsigned long long old_rbx; |