diff options
author | Mans Rullgard <mans@mansr.com> | 2011-12-15 11:02:46 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-12-15 11:02:59 +0000 |
commit | b536c7a3e1399b67c8bfbdcefa69d5f0be944a80 (patch) | |
tree | 90c908816e83087835d176a0d789d8d8557bec68 | |
parent | 566ee0eaf1543101f7a441cc42e3ddad097363bf (diff) | |
download | ffmpeg-b536c7a3e1399b67c8bfbdcefa69d5f0be944a80.tar.gz |
ARM: fix external symbol refs in rv40 asm
External symbol references need prefixes on some systems.
This should fix build errors on Darwin.
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavcodec/arm/rv40dsp_neon.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/arm/rv40dsp_neon.S b/libavcodec/arm/rv40dsp_neon.S index a4313d89f9..d9e1b7c959 100644 --- a/libavcodec/arm/rv40dsp_neon.S +++ b/libavcodec/arm/rv40dsp_neon.S @@ -372,7 +372,7 @@ endfunc function ff_\type\()_rv40_qpel8_mc33_neon, export=1 mov r3, #8 - b ff_\type\()_pixels8_xy2_neon + b X(ff_\type\()_pixels8_xy2_neon) endfunc function ff_\type\()_rv40_qpel8_mc13_neon, export=1 @@ -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 |