diff options
author | Sean McGovern <gseanmcg@gmail.com> | 2024-06-09 13:20:24 -0400 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2024-06-13 23:14:26 +0200 |
commit | cdd139d760688b14849d02ee1907f68fe692c24e (patch) | |
tree | cafbad73718bb9f486c8d59559b00ea28a526577 /libavcodec/me_cmp.c | |
parent | a5d2d267424a0c0568d703362dc89795734f3d54 (diff) | |
download | ffmpeg-cdd139d760688b14849d02ee1907f68fe692c24e.tar.gz |
libavcodec/alpha: remove DSP & support code
Introduced in 1992, the Alpha was a 64-bit RISC processor designed
to replace the VAX CISC machines sold by Digital Equipment Corporation.
After Digital was acquired by Compaq in 1998 -- who themselves would be
later purchased by Hewlett-Packard, the architecture was phased out over
the following decade. It became effectively defunct in 2007, the last
publicly available processor being the Alpha 21364.
FFmpeg has not added any DSP code for this architecture since lowres2
was introduced in 2012, and it is more than unlikely someone still wishes
to maintain it.
Remove the DSP and support code.
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavcodec/me_cmp.c')
-rw-r--r-- | libavcodec/me_cmp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/me_cmp.c b/libavcodec/me_cmp.c index 670103cc05..fe39009093 100644 --- a/libavcodec/me_cmp.c +++ b/libavcodec/me_cmp.c @@ -1058,8 +1058,6 @@ av_cold void ff_me_cmp_init(MECmpContext *c, AVCodecContext *avctx) #if ARCH_AARCH64 ff_me_cmp_init_aarch64(c, avctx); -#elif ARCH_ALPHA - ff_me_cmp_init_alpha(c, avctx); #elif ARCH_ARM ff_me_cmp_init_arm(c, avctx); #elif ARCH_PPC |