diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-02-19 00:43:45 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-02-24 08:58:57 +0100 |
commit | 3a80b1ac121670c2235d92779546c5c789620842 (patch) | |
tree | ed0d72fdcd90e812595fb9e30dd73daf4ec2d14d /libavcodec | |
parent | 559a26600a472e8f2ce3c2e6ad96a14a43d25e2d (diff) | |
download | ffmpeg-3a80b1ac121670c2235d92779546c5c789620842.tar.gz |
avcodec/x86/diracdsp_init: Remove unused MMX functions
Unused since a1f3b18bf55f106c974eacb1dc831be4d2bd5277, yet as nonstatic
functions the compiler can't detect this, so that these functions aren't
stripped and no warning is emitted.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/diracdsp_init.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/x86/diracdsp_init.c b/libavcodec/x86/diracdsp_init.c index 8cb84eb74c..d570238d16 100644 --- a/libavcodec/x86/diracdsp_init.c +++ b/libavcodec/x86/diracdsp_init.c @@ -77,13 +77,6 @@ void ff_dequant_subband_32_sse4(uint8_t *src, uint8_t *dst, ptrdiff_t stride, co c->PFX ## _dirac_pixels_tab[2][IDX] = ff_ ## PFX ## _dirac_pixels32_ ## EXT #define DIRAC_PIXOP(OPNAME2, OPNAME, EXT)\ -void ff_ ## OPNAME2 ## _dirac_pixels8_ ## EXT(uint8_t *dst, const uint8_t *src[5], int stride, int h)\ -{\ - if (h&3)\ - ff_ ## OPNAME2 ## _dirac_pixels8_c(dst, src, stride, h);\ - else\ - OPNAME ## _pixels8_ ## EXT(dst, src[0], stride, h);\ -}\ void ff_ ## OPNAME2 ## _dirac_pixels16_ ## EXT(uint8_t *dst, const uint8_t *src[5], int stride, int h)\ {\ if (h&3)\ |