mirror of
https://github.com/mpv-player/mpv
synced 2025-02-17 21:27:08 +00:00
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
This commit is contained in:
parent
3983328889
commit
e3847132b5
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user