diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-07 23:04:55 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-07 23:04:55 +0200 |
commit | 2fc7c818cb7b7bfdca69d17ab9f1b48290dbc3f6 (patch) | |
tree | 23a8f9c41f97be5cf9cdfd406575fa9ac9461b75 /libavcodec/x86/dsputil_yasm.asm | |
parent | 2da5a5ce00caebbe3afbda8612588966cfeac477 (diff) | |
parent | edd82267958fbbd34eca4f4dbfb96197b9b40ab5 (diff) | |
download | ffmpeg-2fc7c818cb7b7bfdca69d17ab9f1b48290dbc3f6.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
x86: fix build with nasm 2.08
x86: use nop cpu directives only if supported
x86: fix rNmp macros with nasm
build: add trailing / to yasm/nasm -I flags
x86: use 32-bit source registers with movd instruction
x86: add colons after labels
Conflicts:
Makefile
libavutil/x86/x86inc.asm
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/dsputil_yasm.asm')
-rw-r--r-- | libavcodec/x86/dsputil_yasm.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/dsputil_yasm.asm b/libavcodec/x86/dsputil_yasm.asm index 06d2027c69..19884a36a8 100644 --- a/libavcodec/x86/dsputil_yasm.asm +++ b/libavcodec/x86/dsputil_yasm.asm @@ -1143,7 +1143,7 @@ VECTOR_CLIP_INT32 6, 1, 0, 0 cglobal vector_fmul_reverse, 4,4,2, dst, src0, src1, len lea lenq, [lend*4 - 2*mmsize] ALIGN 16 -.loop +.loop: %if cpuflag(avx) vmovaps xmm0, [src1q + 16] vinsertf128 m0, m0, [src1q], 1 @@ -1182,7 +1182,7 @@ VECTOR_FMUL_REVERSE cglobal vector_fmul_add, 5,5,2, dst, src0, src1, src2, len lea lenq, [lend*4 - 2*mmsize] ALIGN 16 -.loop +.loop: mova m0, [src0q + lenq] mova m1, [src0q + lenq + mmsize] mulps m0, m0, [src1q + lenq] @@ -1313,7 +1313,7 @@ cglobal bswap32_buf, 3,4,5 add r0, 4 dec r2 jnz .loop2 -.end +.end: RET ; %1 = aligned/unaligned |