diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-01 00:43:05 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-01 00:47:25 +0100 |
commit | 3e5ea9e471d8f08bfa0c6aa86241393a3d08066a (patch) | |
tree | 282fd90851766045deca0cd429f7623ea30094f9 | |
parent | 8af4ac5272e8eaff90c3102b9473bb09cc6f4201 (diff) | |
download | ffmpeg-3e5ea9e471d8f08bfa0c6aa86241393a3d08066a.tar.gz |
dirac: disable ff_horizontal_compose_haar0i_sse2() the function is not bitexact
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/dwt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/dwt.c b/libavcodec/x86/dwt.c index f3cc04c925..cc0a71186e 100644 --- a/libavcodec/x86/dwt.c +++ b/libavcodec/x86/dwt.c @@ -175,7 +175,7 @@ void ff_spatial_idwt_init_mmx(DWTContext *d, enum dwt_type type) break; case DWT_DIRAC_HAAR0: d->vertical_compose = vertical_compose_haar_sse2; - d->horizontal_compose = ff_horizontal_compose_haar0i_sse2; +//MMXDISABLED d->horizontal_compose = ff_horizontal_compose_haar0i_sse2; break; case DWT_DIRAC_HAAR1: d->vertical_compose = vertical_compose_haar_sse2; |