diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-08 00:43:38 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-11 22:43:20 +0200 |
commit | 1799e27020983ea49a3a59501c33758df444a6e5 (patch) | |
tree | 2bfcd71a68f6b4ee62569a543bdb9d79eced6242 | |
parent | 50a8cbb23e9a982292bf7737004c97eba776c00e (diff) | |
download | ffmpeg-1799e27020983ea49a3a59501c33758df444a6e5.tar.gz |
avcodec/x86/rv34dsp: Remove unused ff_rv34_idct_dc_mmxext
Forgotten in 9ba9c3402499d90e54f8aa111b62c278206d11af.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/x86/rv34dsp.asm | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/libavcodec/x86/rv34dsp.asm b/libavcodec/x86/rv34dsp.asm index 692b4acfcd..5568ddfdf8 100644 --- a/libavcodec/x86/rv34dsp.asm +++ b/libavcodec/x86/rv34dsp.asm @@ -44,10 +44,10 @@ SECTION .text sar %1, 10 %endmacro -%macro rv34_idct 1 -cglobal rv34_idct_%1, 1, 2, 0 +INIT_MMX mmxext +cglobal rv34_idct_dc_noround, 1, 2, 0 movsx r1, word [r0] - IDCT_DC r1 + IDCT_DC_NOROUND r1 movd m0, r1d pshufw m0, m0, 0 movq [r0+ 0], m0 @@ -55,13 +55,6 @@ cglobal rv34_idct_%1, 1, 2, 0 movq [r0+16], m0 movq [r0+24], m0 REP_RET -%endmacro - -INIT_MMX mmxext -%define IDCT_DC IDCT_DC_ROUND -rv34_idct dc -%define IDCT_DC IDCT_DC_NOROUND -rv34_idct dc_noround ; ff_rv34_idct_dc_add_mmx(uint8_t *dst, int stride, int dc); %if ARCH_X86_32 |