f7ebc0
From 4e5a0bacf021737fb1a8366ad07dc66f3286b1be Mon Sep 17 00:00:00 2001
f7ebc0
From: Miroslav Lichvar <mlichvar@redhat.com>
f7ebc0
Date: Mon, 3 Jun 2013 13:25:47 +0200
f7ebc0
Subject: [PATCH 2/2] Don't use
f7ebc0
 FLAC__bitreader_read_rice_signed_block_asm_ia32_bswap.
f7ebc0
f7ebc0
It seems to be slower than the C function.
f7ebc0
---
f7ebc0
 src/libFLAC/stream_decoder.c | 2 +-
f7ebc0
 1 file changed, 1 insertion(+), 1 deletion(-)
f7ebc0
f7ebc0
diff --git a/src/libFLAC/stream_decoder.c b/src/libFLAC/stream_decoder.c
f7ebc0
index f987c27..bc9c715 100644
f7ebc0
--- a/src/libFLAC/stream_decoder.c
f7ebc0
+++ b/src/libFLAC/stream_decoder.c
f7ebc0
@@ -400,7 +400,7 @@ static FLAC__StreamDecoderInitStatus init_stream_internal_(
f7ebc0
 #ifdef FLAC__CPU_IA32
f7ebc0
 		FLAC__ASSERT(decoder->private_->cpuinfo.type == FLAC__CPUINFO_TYPE_IA32);
f7ebc0
 #ifdef FLAC__HAS_NASM
f7ebc0
-#if 1 /*@@@@@@ OPT: not clearly faster, needs more testing */
f7ebc0
+#if 0 /*@@@@@@ OPT: not clearly faster, needs more testing */
f7ebc0
 		if(decoder->private_->cpuinfo.data.ia32.bswap)
f7ebc0
 			decoder->private_->local_bitreader_read_rice_signed_block = FLAC__bitreader_read_rice_signed_block_asm_ia32_bswap;
f7ebc0
 #endif
f7ebc0
-- 
f7ebc0
1.8.1.4
f7ebc0