[FFmpeg-cvslog] r15609 - trunk/configure

mru subversion
Mon Oct 13 01:10:48 CEST 2008


Author: mru
Date: Mon Oct 13 01:10:48 2008
New Revision: 15609

Log:
Enable FAST_UNALIGNED on ARM variants that support it

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Mon Oct 13 01:10:48 2008
@@ -1518,7 +1518,11 @@ if test $cpu != "generic"; then
         sparc64)
             add_cflags "-mcpu=v9"
         ;;
-        arm*|cortex*)
+        arm11*|cortex*)
+            add_cflags "-mcpu=$cpu"
+            enable fast_unaligned
+        ;;
+        arm*)
             add_cflags "-mcpu=$cpu"
         ;;
         *)




More information about the ffmpeg-cvslog mailing list