summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2010-08-25 19:57:05 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2010-08-25 19:57:05 +0000
commit72f642400be9735dd61494f5fae508350e6bb371 (patch)
treeb402166a92e4434265a6e18a68d09f89628a7598
parent74c847e098a70078fff1347c19787d699e5b5663 (diff)
Mark xmm6 and xmm7 as clobbered in ff_vp3_idct_sse2(), which is contributing
to the VP6 fate failures on Win64. Originally committed as revision 24931 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/x86/vp3dsp_sse2.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/x86/vp3dsp_sse2.c b/libavcodec/x86/vp3dsp_sse2.c
index e0ebd42427..b545c38ac0 100644
--- a/libavcodec/x86/vp3dsp_sse2.c
+++ b/libavcodec/x86/vp3dsp_sse2.c
@@ -171,6 +171,7 @@ void ff_vp3_idct_sse2(int16_t *input_data)
VP3_1D_IDCT_SSE2(ADD8, SHIFT4)
PUT_BLOCK(%%xmm0, %%xmm1, %%xmm2, %%xmm3, %%xmm4, %%xmm5, %%xmm6, %%xmm7)
:: "r"(input_data), "r"(ff_vp3_idct_data), "m"(ff_pw_8)
+ : "%xmm6", "%xmm7"
);
}