[vlc-commits] arm_neon: Explicitly specify the symbol name for amplify_float_arm_neon

Martin Storsjö git at videolan.org
Fri Feb 7 19:41:14 CET 2014


vlc | branch: master | Martin Storsjö <martin at martin.st> | Fri Feb  7 15:32:01 2014 +0200| [a0da80b66b71786a6ca70a95bfb317713f24e542] | committer: Martin Storsjö

arm_neon: Explicitly specify the symbol name for amplify_float_arm_neon

This is consistent with all the other neon functions. This avoids
having to add a symbol prefix via other means (macros, wrapper
tools) on platforms that normally use one.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a0da80b66b71786a6ca70a95bfb317713f24e542
---

 modules/arm_neon/volume.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/arm_neon/volume.c b/modules/arm_neon/volume.c
index 7233b90..3497387 100644
--- a/modules/arm_neon/volume.c
+++ b/modules/arm_neon/volume.c
@@ -55,7 +55,7 @@ static int Probe(vlc_object_t *obj)
     return VLC_SUCCESS;
 }
 
-void amplify_float_arm_neon(float *, const float *, size_t, float);
+void amplify_float_arm_neon(float *, const float *, size_t, float) asm("amplify_float_arm_neon");
 
 static void AmplifyFloat(audio_volume_t *volume, block_t *block, float amp)
 {



More information about the vlc-commits mailing list