diff options
author | Johannes Schickel | 2015-12-16 01:15:23 +0100 |
---|---|---|
committer | Johannes Schickel | 2015-12-16 01:15:23 +0100 |
commit | 3fab9056296fbf491372f66f7fbb23d6312ad2ad (patch) | |
tree | defbf310d70a7882e63a41224fd8380a03a66fe0 /configure | |
parent | b729dbf1bb910e367fdcd86927564de95d10b46f (diff) | |
download | scummvm-rg350-3fab9056296fbf491372f66f7fbb23d6312ad2ad.tar.gz scummvm-rg350-3fab9056296fbf491372f66f7fbb23d6312ad2ad.tar.bz2 scummvm-rg350-3fab9056296fbf491372f66f7fbb23d6312ad2ad.zip |
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.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |