External symbol references need prefixes on some systems. This should fix build errors on Darwin.
Signed-off-by: Mans Rullgard <[email protected]> --- libavcodec/arm/rv40dsp_neon.S | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/arm/rv40dsp_neon.S b/libavcodec/arm/rv40dsp_neon.S index 07ba842..9d91eb0 100644 --- a/libavcodec/arm/rv40dsp_neon.S +++ b/libavcodec/arm/rv40dsp_neon.S @@ -652,7 +652,7 @@ endfunc function ff_\type\()_rv40_qpel16_mc33_neon, export=1 mov r3, #16 - b ff_\type\()_pixels16_xy2_neon + b X(ff_\type\()_pixels16_xy2_neon) endfunc .endm -- 1.7.8 _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
