summaryrefslogtreecommitdiffstats
path: root/libfaad2
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-16 17:05:58 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-16 17:05:58 +0000
commite3847132b5680a910982b4274a674c7e97796cfd (patch)
treebab372ec88158e648f8f349cb2d1305c49f04410 /libfaad2
parent398332888968b9eca5c756cbaa1c1866136fe596 (diff)
downloadmpv-e3847132b5680a910982b4274a674c7e97796cfd.tar.bz2
mpv-e3847132b5680a910982b4274a674c7e97796cfd.tar.xz
Use fixed-point implementation on avr32.
patch by Hans-Christian Egtvedt, hans-christian.egtvedt atmel com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28613 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libfaad2')
-rw-r--r--libfaad2/common.h2
-rw-r--r--libfaad2/local_changes.diff2
2 files changed, 2 insertions, 2 deletions
diff --git a/libfaad2/common.h b/libfaad2/common.h
index 29a30d089e..576e9ca115 100644
--- a/libfaad2/common.h
+++ b/libfaad2/common.h
@@ -69,7 +69,7 @@ extern "C" {
/* 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 --git a/libfaad2/local_changes.diff b/libfaad2/local_changes.diff
index a6400eb0b8..0e3fe95d41 100644
--- a/libfaad2/local_changes.diff
+++ b/libfaad2/local_changes.diff
@@ -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