diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-03-21 03:20:56 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-21 03:38:48 +0100 |
commit | 1cd107f63792dfc008cc3b9801ecd5bbf4cd5ce5 (patch) | |
tree | 6c7d68a9c422a9b77a908e90ef2bc196eb59a3f0 /libavcodec | |
parent | 45ad7bc423281b13e8f2e80abe85fd5164d01beb (diff) | |
download | ffmpeg-1cd107f63792dfc008cc3b9801ecd5bbf4cd5ce5.tar.gz |
avcodec/x86/snowdsp: add missing clobbers to inner_add_yblock_bw_8_obmc_16_bh_even_sse2() and inner_add_yblock_bw_16_obmc_32_sse2()
Note, these functions are currently disabled
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/snowdsp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/x86/snowdsp.c b/libavcodec/x86/snowdsp.c index 735e7905a0..711af5fd54 100644 --- a/libavcodec/x86/snowdsp.c +++ b/libavcodec/x86/snowdsp.c @@ -671,6 +671,7 @@ static void ff_snow_vertical_compose97i_mmx(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM :"+m"(dst8),"+m"(dst_array),"=&r"(tmp)\ :\ "rm"((x86_reg)(src_x<<1)),"m"(obmc),"a"(block),"m"(b_h),"m"(src_stride):\ + XMM_CLOBBERS("%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7", )\ "%"REG_c"","%"REG_S"","%"REG_D"","%"REG_d""); #define snow_inner_add_yblock_sse2_end_8\ |