summaryrefslogtreecommitdiff
path: root/libavcodec/arm/mpegvideo_arm.c
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2012-03-09 15:21:15 +0100
committerJanne Grunau <janne-libav@jannau.net>2012-03-12 22:46:56 +0100
commit363bd1c62c1bcbac2dcb56f3dc47824f075888d2 (patch)
tree0632378b2cb9e40d80586c5bf02d738d7ac82297 /libavcodec/arm/mpegvideo_arm.c
parent33c5c3ad070bc1203e48c8af9c6272d71f1d8b4d (diff)
remove iwmmxt optimizations
The were broken since August of 2010 without anyone noticing until three weeks ago. Nobody cares about it anymore and hopefully Marvell will support NEON like in the PXA978 from now on.
Diffstat (limited to 'libavcodec/arm/mpegvideo_arm.c')
-rw-r--r--libavcodec/arm/mpegvideo_arm.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/arm/mpegvideo_arm.c b/libavcodec/arm/mpegvideo_arm.c
index 0a66f2a981..26eed89930 100644
--- a/libavcodec/arm/mpegvideo_arm.c
+++ b/libavcodec/arm/mpegvideo_arm.c
@@ -40,16 +40,9 @@ void ff_dct_unquantize_h263_intra_neon(MpegEncContext *s, DCTELEM *block,
void ff_MPV_common_init_arm(MpegEncContext *s)
{
- /* IWMMXT support is a superset of armv5te, so
- * allow optimized functions for armv5te unless
- * a better iwmmxt function exists
- */
#if HAVE_ARMV5TE
ff_MPV_common_init_armv5te(s);
#endif
-#if HAVE_IWMMXT
- ff_MPV_common_init_iwmmxt(s);
-#endif
if (HAVE_NEON) {
s->dct_unquantize_h263_intra = ff_dct_unquantize_h263_intra_neon;