[FFmpeg-devel] [PATCH] x86/vp9mc: fix string concatenation of fullpel function names

Ronald S. Bultje rsbultje at gmail.com
Sun Sep 20 08:20:58 CEST 2015


Hi,

On Sep 20, 2015 1:29 AM, "James Almer" <jamrial at gmail.com> wrote:
>
> Fixes compilation with NASM
>
> Signed-off-by: James Almer <jamrial at gmail.com>
> ---
> See
http://fate.ffmpeg.org/log.cgi?time=20150919155527&log=compile&slot=x86_64-archlinux-gcc-nasm
>
>  libavcodec/x86/vp9mc.asm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libavcodec/x86/vp9mc.asm b/libavcodec/x86/vp9mc.asm
> index d828312..9152ba5 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]
> --
> 2.5.2

Lgtm, tnx.

Ronald


More information about the ffmpeg-devel mailing list