diff options
author | Felix Bünemann <Felix.Buenemann@gmx.de> | 2002-01-19 16:56:35 +0000 |
---|---|---|
committer | Felix Bünemann <Felix.Buenemann@gmx.de> | 2002-01-19 16:56:35 +0000 |
commit | bf1595c488080bae84656956987994bf37fa2df4 (patch) | |
tree | 09a87e10f9c33d6c4e49daaa2e51d2e803f8cd3d /postproc | |
parent | 9b4644281d72fc44fe1b38d18dc7732fd25f7eb1 (diff) | |
download | ffmpeg-bf1595c488080bae84656956987994bf37fa2df4.tar.gz |
fix mangling with runtime cpu detection
Originally committed as revision 4254 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/postprocess_template.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/postproc/postprocess_template.c b/postproc/postprocess_template.c index 7a8614f5c2..daf22cb299 100644 --- a/postproc/postprocess_template.c +++ b/postproc/postprocess_template.c @@ -1119,10 +1119,10 @@ src-=8; "psubusw %%mm1, %%mm5 \n\t" // ld - "movq w05, %%mm2 \n\t" // 5 + "movq "MANGLE(w05)", %%mm2 \n\t" // 5 "pmullw %%mm2, %%mm4 \n\t" "pmullw %%mm2, %%mm5 \n\t" - "movq w20, %%mm2 \n\t" // 32 + "movq "MANGLE(w20)", %%mm2 \n\t" // 32 "paddw %%mm2, %%mm4 \n\t" "paddw %%mm2, %%mm5 \n\t" "psrlw $6, %%mm4 \n\t" |