annotate asmalign.h @ 18988:a61ef37d3c71

Fix off-by-one error for negative strides (flipped image)
author reimar
date Mon, 10 Jul 2006 12:06:41 +0000
parents 7b408d60de9e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18104
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
1 #ifdef SYS_DARWIN
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
2 #define ASMALIGN8 ".align 3\n\t"
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
3 #define ASMALIGN16 ".align 4\n\t"
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
4 #else
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
5 #define ASMALIGN8 ".balign 8\n\t"
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
6 #define ASMALIGN16 ".balign 16\n\t"
7b408d60de9e add support for intel mac. mp3lib is not fixed yet.
nplourde
parents:
diff changeset
7 #endif