summaryrefslogtreecommitdiffstats
path: root/libvo/osd_template.c
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-15 21:52:34 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-15 21:52:34 +0000
commit1a3fb6c21e277d6c8aefb78e31efcf197b75bdb8 (patch)
treeaf967691ade9c4db7cc48375f3a317e14704b60a /libvo/osd_template.c
parent24a3faf378488ca40ec8c371eb3977472c9bb29b (diff)
downloadmpv-1a3fb6c21e277d6c8aefb78e31efcf197b75bdb8.tar.bz2
mpv-1a3fb6c21e277d6c8aefb78e31efcf197b75bdb8.tar.xz
libvo: change asm syntax to use ASMALIGN and " # nop"
Change ".balign 16\n\t" to ASMALIGN(4) and "/nop" to " # nop". The new version is what other code in MPlayer uses, and works with old assembler versions like that used on OS X. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26005 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/osd_template.c')
-rw-r--r--libvo/osd_template.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/osd_template.c b/libvo/osd_template.c
index 39a682fc5b..45a318b745 100644
--- a/libvo/osd_template.c
+++ b/libvo/osd_template.c
@@ -16,8 +16,8 @@
#define PREFETCHW "prefetcht0"
#define PAVGB "pavgb"
#else
-#define PREFETCH "/nop"
-#define PREFETCHW "/nop"
+#define PREFETCH " # nop"
+#define PREFETCHW " # nop"
#endif
#ifdef HAVE_3DNOW