diff options
author | James Almer <jamrial@gmail.com> | 2017-11-21 10:57:06 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-11-21 10:57:14 -0300 |
commit | beb63baa6961698982e5e59037be1854e532425c (patch) | |
tree | adb7802d5d5521801f1971e5e57a6d78022a0906 /libavcodec/x86 | |
parent | ebf352116b310d08d35b0eeae83686a6e739da1d (diff) | |
download | ffmpeg-beb63baa6961698982e5e59037be1854e532425c.tar.gz |
x86/utvideodsp: reuse shared constants
Remove the broadcast instructions as well now that they are wide
enough.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/utvideodsp.asm | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/libavcodec/x86/utvideodsp.asm b/libavcodec/x86/utvideodsp.asm index 6e13de39aa..b799c44b64 100644 --- a/libavcodec/x86/utvideodsp.asm +++ b/libavcodec/x86/utvideodsp.asm @@ -24,9 +24,9 @@ SECTION_RODATA -pb_128: times 16 db 128 -pw_512: times 8 dw 512 -pw_1023: times 8 dw 1023 +cextern pb_80 +cextern pw_512 +cextern pw_1023 SECTION .text @@ -48,11 +48,7 @@ DEFINE_ARGS src_r, src_g, src_b, linesize_r, linesize_g, linesize_b, x %define wq r6m %define hd r7mp %endif -%if mmsize == 32 - vbroadcasti128 m3, [pb_128] -%else - mova m3, [pb_128] -%endif + mova m3, [pb_80] .nextrow: mov xq, wq @@ -98,13 +94,8 @@ cglobal restore_rgb_planes10, 7 + ARCH_X86_64, 7 + ARCH_X86_64 * 2, 5, src_r, sr add src_rq, wq add src_gq, wq add src_bq, wq -%if mmsize == 32 - vbroadcasti128 m3, [pw_512] - vbroadcasti128 m4, [pw_1023] -%else mova m3, [pw_512] mova m4, [pw_1023] -%endif neg wq %if ARCH_X86_64 == 0 mov wm, wq |