diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-11 16:48:27 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-12 20:56:54 +0200 |
commit | ca411fc1d34329cd17b28627f697e391ae52073f (patch) | |
tree | 0c0249ea90548e1a4611e44ea8c44ef9dfa92d21 /libavcodec/dsputil.h | |
parent | bc4620e5d61a4dd9a1f654fadd281a172aab04be (diff) | |
download | ffmpeg-ca411fc1d34329cd17b28627f697e391ae52073f.tar.gz |
avcodec: Remove broken MMI optimizations
The code fails to compile and is broken beyond repair.
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index da3e7586e2..7fdbf6f4d0 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -599,7 +599,6 @@ static inline int get_penalty_factor(int lambda, int lambda2, int type){ void ff_dsputil_init_alpha(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_arm(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_bfin(DSPContext* c, AVCodecContext *avctx); -void ff_dsputil_init_mmi(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); @@ -607,7 +606,7 @@ void ff_dsputil_init_vis(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_dwt(DSPContext *c); -#if (ARCH_ARM && HAVE_NEON) || ARCH_PPC || HAVE_MMI || HAVE_MMX +#if (ARCH_ARM && HAVE_NEON) || ARCH_PPC || HAVE_MMX # define STRIDE_ALIGN 16 #else # define STRIDE_ALIGN 8 |