Hello community, here is the log from the commit of package openal-soft for openSUSE:Factory checked in at 2015-10-17 16:37:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/openal-soft (Old) and /work/SRC/openSUSE:Factory/.openal-soft.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openal-soft" Changes: -------- --- /work/SRC/openSUSE:Factory/openal-soft/openal-soft.changes 2015-10-03 20:30:07.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.openal-soft.new/openal-soft.changes 2015-10-17 16:37:09.000000000 +0200 @@ -1,0 +2,6 @@ +Fri Oct 2 18:30:06 UTC 2015 - [email protected] + +- replace openal-soft-arm_neon-only-for-32bit.patch with + fix-neon-build.patch to fix the build instead of disabling neon + +------------------------------------------------------------------- Old: ---- openal-soft-arm_neon-only-for-32bit.patch New: ---- fix-neon-build.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openal-soft.spec ++++++ --- /var/tmp/diff_new_pack.VV1dw6/_old 2015-10-17 16:37:10.000000000 +0200 +++ /var/tmp/diff_new_pack.VV1dw6/_new 2015-10-17 16:37:10.000000000 +0200 @@ -28,7 +28,8 @@ Source3: baselibs.conf # PATCH-FIX-UPSTREAM openal-no-autospawn.diff Patch0: openal-no-autospawn.diff -Patch1: openal-soft-arm_neon-only-for-32bit.patch +# PATCH-FIX-UPSTREAM fix-neon-build.patch +Patch1: fix-neon-build.patch BuildRequires: cmake >= 2.4.4 BuildRequires: gcc-c++ BuildRequires: pkg-config ++++++ fix-neon-build.patch ++++++ From: Chris Robinson <[email protected]> Date: Mon, 1 Sep 2014 06:46:43 +0000 (-0700) Subject: Fix Neon mixer definition X-Git-Url: http://repo.or.cz/w/openal-soft.git/commitdiff_plain/ba827cdfffb386e00c9f96cb605980dafef304ae Fix Neon mixer definition --- diff --git a/Alc/mixer_neon.c b/Alc/mixer_neon.c index 7b6da2b..8a27ddb 100644 --- a/Alc/mixer_neon.c +++ b/Alc/mixer_neon.c @@ -75,8 +75,8 @@ static inline void ApplyCoeffs(ALuint Offset, ALfloat (*restrict Values)[2], #undef SUFFIX -void MixDirect_Neon(const ALfloat *data, ALuint OutChans, ALfloat (*restrict OutBuffer)[BUFFERSIZE], - MixGains *Gains, ALuint Counter, ALuint OutPos, ALuint BufferSize) +void Mix_Neon(const ALfloat *data, ALuint OutChans, ALfloat (*restrict OutBuffer)[BUFFERSIZE], + MixGains *Gains, ALuint Counter, ALuint OutPos, ALuint BufferSize) { ALfloat gain, step; float32x4_t gain4;
