diff libmpeg2/motion_comp.c @ 27645:83d915449a10

Remove IWMMXT optimizations through libavcodec from libmpeg2. According to Siarhei Siamashka libavcodec is faster on ARM so it is better to use it directly instead of creating this hackish mix of two libraries. Plus, these local changes would never be acceptable upstream, so no good reason for keeping it in our local patchset remains.
author diego
date Wed, 01 Oct 2008 01:01:59 +0000
parents fd18fa10de53
children 25337a2147e7
line wrap: on
line diff
--- a/libmpeg2/motion_comp.c	Tue Sep 30 19:35:10 2008 +0000
+++ b/libmpeg2/motion_comp.c	Wed Oct 01 01:01:59 2008 +0000
@@ -68,11 +68,6 @@
     else
 #endif
 #ifdef ARCH_ARM
-#ifdef HAVE_IWMMXT
-    if (accel & MPEG2_ACCEL_ARM_IWMMXT)
-	mpeg2_mc = mpeg2_mc_iwmmxt;
-    else
-#endif
     if (accel & MPEG2_ACCEL_ARM)
 	mpeg2_mc = mpeg2_mc_arm;
     else