Commit a0da80b6 authored by Martin Storsjö's avatar 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: default avatarMartin Storsjö <martin@martin.st>
parent aa8cc709
......@@ -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)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment