annotate asmalign.h @ 19184:3f2de7ba8aa0

split the incestous intercourse between ao_mpegpes and vo_mpegpes; now the devices can be used separately
author nicodvb
date Wed, 26 Jul 2006 21:40:43 +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