changeset 28578:8c9ed8e6fc99

Use fixed-point implementation on avr32. patch by Hans-Christian Egtvedt, hans-christian.egtvedt atmel com
author diego
date Mon, 16 Feb 2009 17:05:58 +0000
parents 4f37b9cb7343
children 0405513156d1
files libfaad2/common.h libfaad2/local_changes.diff
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libfaad2/common.h	Mon Feb 16 17:02:16 2009 +0000
+++ b/libfaad2/common.h	Mon Feb 16 17:05:58 2009 +0000
@@ -69,7 +69,7 @@
 /* Use if target platform has address generators with autoincrement */
 //#define PREFER_POINTERS
 
-#if defined(_WIN32_WCE) || defined(__arm__)
+#if defined(_WIN32_WCE) || defined(__arm__) || defined(__avr32__)
 #define FIXED_POINT
 #endif
 
--- a/libfaad2/local_changes.diff	Mon Feb 16 17:02:16 2009 +0000
+++ b/libfaad2/local_changes.diff	Mon Feb 16 17:05:58 2009 +0000
@@ -52,7 +52,7 @@
  //#define PREFER_POINTERS
  
 -#ifdef _WIN32_WCE
-+#if defined(_WIN32_WCE) || defined(__arm__)
++#if defined(_WIN32_WCE) || defined(__arm__) || defined(__avr32__)
  #define FIXED_POINT
  #endif