Browse Source

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>
tags/n4.0
James Almer 7 years ago
parent
commit
beb63baa69
1 changed files with 4 additions and 13 deletions
  1. +4
    -13
      libavcodec/x86/utvideodsp.asm

+ 4
- 13
libavcodec/x86/utvideodsp.asm View File

@@ -24,9 +24,9 @@


SECTION_RODATA 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 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 wq r6m
%define hd r7mp %define hd r7mp
%endif %endif
%if mmsize == 32
vbroadcasti128 m3, [pb_128]
%else
mova m3, [pb_128]
%endif
mova m3, [pb_80]
.nextrow: .nextrow:
mov xq, wq 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_rq, wq
add src_gq, wq add src_gq, wq
add src_bq, wq add src_bq, wq
%if mmsize == 32
vbroadcasti128 m3, [pw_512]
vbroadcasti128 m4, [pw_1023]
%else
mova m3, [pw_512] mova m3, [pw_512]
mova m4, [pw_1023] mova m4, [pw_1023]
%endif
neg wq neg wq
%if ARCH_X86_64 == 0 %if ARCH_X86_64 == 0
mov wm, wq mov wm, wq


Loading…
Cancel
Save