Mercurial > libavcodec.hg
changeset 12502:6bc14239edfb libavcodec
x86: remove hack disabling sse2 h264 loop filter with 32-bit icc
author | mru |
---|---|
date | Sat, 18 Sep 2010 20:44:32 +0000 |
parents | b3f9612d4ea7 |
children | 3fff0806404a |
files | x86/h264dsp_mmx.c |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/x86/h264dsp_mmx.c Fri Sep 17 19:33:56 2010 +0000 +++ b/x86/h264dsp_mmx.c Sat Sep 18 20:44:32 2010 +0000 @@ -326,12 +326,11 @@ c->biweight_h264_pixels_tab[3]= ff_h264_biweight_8x8_sse2; c->biweight_h264_pixels_tab[4]= ff_h264_biweight_8x4_sse2; -#if ARCH_X86_64 || !defined(__ICC) || __ICC > 1110 c->h264_v_loop_filter_luma = ff_x264_deblock_v_luma_sse2; c->h264_h_loop_filter_luma = ff_x264_deblock_h_luma_sse2; c->h264_v_loop_filter_luma_intra = ff_x264_deblock_v_luma_intra_sse2; c->h264_h_loop_filter_luma_intra = ff_x264_deblock_h_luma_intra_sse2; -#endif + c->h264_idct_add16 = ff_h264_idct_add16_sse2; c->h264_idct_add8 = ff_h264_idct_add8_sse2; c->h264_idct_add16intra = ff_h264_idct_add16intra_sse2;