[Scummvm-cvs-logs] scummvm master -> 3fab9056296fbf491372f66f7fbb23d6312ad2ad
lordhoto
lordhoto at gmail.com
Wed Dec 16 01:20:48 CET 2015
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
3fab905629 CONFIGURE: Disable use of USE_ARM_SOUND_ASM.
Commit: 3fab9056296fbf491372f66f7fbb23d6312ad2ad
https://github.com/scummvm/scummvm/commit/3fab9056296fbf491372f66f7fbb23d6312ad2ad
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2015-12-16T01:15:23+01:00
Commit Message:
CONFIGURE: Disable use of USE_ARM_SOUND_ASM.
The feature is currently broken (see bug #6957 "AUDIO: ARM ASM sound code causes distorted audio on 32 bit armv6").
Fixing the feature looks highly non-trivial and since nobody volunteered so
far it's unlikely we will see any fix soon.
Changed paths:
configure
diff --git a/configure b/configure
index 90aabc0..d28b411 100755
--- a/configure
+++ b/configure
@@ -2048,7 +2048,12 @@ case $_host_cpu in
arm*)
echo "ARM"
define_in_config_if_yes yes 'USE_ARM_SCALER_ASM'
- define_in_config_if_yes yes 'USE_ARM_SOUND_ASM'
+ # FIXME: The following feature exhibits a bug. It produces distorted
+ # sound since 9003ce517ff9906b0288f9f7c02197fd091d4554. The ARM
+ # assembly will need to be properly adapted to the changes to the C
+ # code in 8f5a7cde2f99de9fef849b0ff688906f05f4643e.
+ # See bug #6957: "AUDIO: ARM ASM sound code causes distorted audio on 32 bit armv6"
+ #define_in_config_if_yes yes 'USE_ARM_SOUND_ASM'
define_in_config_if_yes yes 'USE_ARM_SMUSH_ASM'
define_in_config_if_yes yes 'USE_ARM_GFX_ASM'
# FIXME: The following feature exhibits a bug during the intro scene of Indy 4
More information about the Scummvm-git-logs
mailing list