# HG changeset patch # User diego # Date 1234803958 0 # Node ID 8c9ed8e6fc99963a1724e194c9376c1eb6129a86 # Parent 4f37b9cb7343209d3e7d7115bb2117a534f2ef14 Use fixed-point implementation on avr32. patch by Hans-Christian Egtvedt, hans-christian.egtvedt atmel com diff -r 4f37b9cb7343 -r 8c9ed8e6fc99 libfaad2/common.h --- 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 diff -r 4f37b9cb7343 -r 8c9ed8e6fc99 libfaad2/local_changes.diff --- 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