From f3bbe4bb1ffc94d7c06769a31c6e61e54949ed9e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 28 Dec 2013 17:23:48 +0100 Subject: pcm/Volume: remove optimized i386 assembly This code is unable to dither. Until we implement that, let's remove the code for now. i386 isn't relevant anymore anyway. --- src/pcm/Volume.cxx | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) diff --git a/src/pcm/Volume.cxx b/src/pcm/Volume.cxx index 539ef1238..0ccfe03b5 100644 --- a/src/pcm/Volume.cxx +++ b/src/pcm/Volume.cxx @@ -42,56 +42,6 @@ pcm_volume_sample(typename Traits::value_type _sample, return PcmClamp(sample); } -#ifdef __i386__ - -/** - * Optimized volume function for i386. Use the EDX:EAX 2*32 bit - * multiplication result instead of emulating 64 bit multiplication. - */ -static inline int32_t -pcm_volume_sample_24(int32_t sample, int32_t volume, gcc_unused int32_t dither) -{ - int32_t result; - - asm(/* edx:eax = sample * volume */ - "imul %2\n" - - /* "add %3, %1\n" dithering disabled for now, because we - have no overflow check - is dithering really important - here? */ - - /* eax = edx:eax / PCM_VOLUME_1 */ - "sal $22, %%edx\n" - "shr $10, %1\n" - "or %%edx, %1\n" - - : "=a"(result) - : "0"(sample), "r"(volume) /* , "r"(dither) */ - : "edx" - ); - - return result; -} - -template<> -inline int32_t -pcm_volume_sample>(int32_t sample, - int volume) -{ - return pcm_volume_sample_24(sample, volume, pcm_volume_dither()); -} - -template<> -inline int32_t -pcm_volume_sample>(int32_t sample, int volume) -{ - return pcm_volume_sample_24(sample, volume, pcm_volume_dither()); -} - -#endif - template> static void pcm_volume_change(typename Traits::pointer_type dest, -- cgit v1.2.3