diff options
author | James Almer <jamrial@gmail.com> | 2015-09-19 20:27:03 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-09-20 12:32:27 -0300 |
commit | 4bb6cb4c7db41e04057a15d7629d0ce1c4556d85 (patch) | |
tree | dc6b0b2a9192761662a03f5098d12f20b7d9de34 | |
parent | b947ac9096e3eedd167a37c64509f0eba7a871e9 (diff) | |
download | ffmpeg-4bb6cb4c7db41e04057a15d7629d0ce1c4556d85.tar.gz |
x86/vp9mc: fix string concatenation of fullpel function names
Fixes compilation with NASM
Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/x86/vp9mc.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/vp9mc.asm b/libavcodec/x86/vp9mc.asm index d8283126eb..9152ba541b 100644 --- a/libavcodec/x86/vp9mc.asm +++ b/libavcodec/x86/vp9mc.asm @@ -583,11 +583,11 @@ filter_vx2_fn avg %endif %if %2 <= mmsize -cglobal vp9_%1%2%%szsuf, 5, 7, 4, dst, dstride, src, sstride, h, dstride3, sstride3 +cglobal vp9_%1%2 %+ %%szsuf, 5, 7, 4, dst, dstride, src, sstride, h, dstride3, sstride3 lea sstride3q, [sstrideq*3] lea dstride3q, [dstrideq*3] %else -cglobal vp9_%1%2%%szsuf, 5, 5, %8, dst, dstride, src, sstride, h +cglobal vp9_%1%2 %+ %%szsuf, 5, 5, %8, dst, dstride, src, sstride, h %endif .loop: %%srcfn m0, [srcq] |