diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2009-10-18 21:44:03 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2009-10-18 21:44:03 +0000 |
commit | b07781b6e4f6267f20aec4e7f1d390ddb223af46 (patch) | |
tree | 8311723ff8bc57347dc9b145824057332dd36642 /libavcodec/x86 | |
parent | 29e4edbbe7066c25563eef7705ba05cd8ae9166d (diff) | |
download | ffmpeg-b07781b6e4f6267f20aec4e7f1d390ddb223af46.tar.gz |
fix linking on systems with a function name prefix (10l in r20287)
Originally committed as revision 20294 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/dsputil_yasm.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/dsputil_yasm.asm b/libavcodec/x86/dsputil_yasm.asm index c3a23a9cb2..bb6376c64f 100644 --- a/libavcodec/x86/dsputil_yasm.asm +++ b/libavcodec/x86/dsputil_yasm.asm @@ -217,7 +217,7 @@ cglobal add_hfyu_left_prediction_sse4, 3,3,7, dst, src, w, left movd m0, leftm pslldq m0, 15 test srcq, 15 - jnz ff_add_hfyu_left_prediction_ssse3 %+ .skip_prologue + jnz add_hfyu_left_prediction_ssse3.skip_prologue test dstq, 15 jnz .unaligned ADD_HFYU_LEFT_LOOP 1 |