# HG changeset patch # User conrad # Date 1224391224 0 # Node ID b661cf8690a11e1505160151f83778c9745f486b # Parent 0839f325edb5c6dbbec6f1ddc0787b296610aaf9 VP3 loop filter is mmx2 not mmx diff -r 0839f325edb5 -r b661cf8690a1 i386/dsputil_mmx.c --- a/i386/dsputil_mmx.c Fri Oct 17 03:18:08 2008 +0000 +++ b/i386/dsputil_mmx.c Sun Oct 19 04:40:24 2008 +0000 @@ -2593,11 +2593,6 @@ c->h263_v_loop_filter= h263_v_loop_filter_mmx; c->h263_h_loop_filter= h263_h_loop_filter_mmx; } - if ((ENABLE_VP3_DECODER || ENABLE_THEORA_DECODER) && - !(avctx->flags & CODEC_FLAG_BITEXACT)) { - c->vp3_v_loop_filter= ff_vp3_v_loop_filter_mmx; - c->vp3_h_loop_filter= ff_vp3_h_loop_filter_mmx; - } c->put_h264_chroma_pixels_tab[0]= put_h264_chroma_mc8_mmx_rnd; c->put_h264_chroma_pixels_tab[1]= put_h264_chroma_mc4_mmx; c->put_no_rnd_h264_chroma_pixels_tab[0]= put_h264_chroma_mc8_mmx_nornd; @@ -2638,6 +2633,12 @@ c->avg_pixels_tab[1][3] = avg_pixels8_xy2_mmx2; } + if ((ENABLE_VP3_DECODER || ENABLE_THEORA_DECODER) && + !(avctx->flags & CODEC_FLAG_BITEXACT)) { + c->vp3_v_loop_filter= ff_vp3_v_loop_filter_mmx2; + c->vp3_h_loop_filter= ff_vp3_h_loop_filter_mmx2; + } + #define SET_QPEL_FUNCS(PFX, IDX, SIZE, CPU) \ c->PFX ## _pixels_tab[IDX][ 0] = PFX ## SIZE ## _mc00_ ## CPU; \ c->PFX ## _pixels_tab[IDX][ 1] = PFX ## SIZE ## _mc10_ ## CPU; \ diff -r 0839f325edb5 -r b661cf8690a1 i386/vp3dsp_mmx.c --- a/i386/vp3dsp_mmx.c Fri Oct 17 03:18:08 2008 +0000 +++ b/i386/vp3dsp_mmx.c Sun Oct 19 04:40:24 2008 +0000 @@ -84,7 +84,7 @@ "shr $16, %0 \n\t" \ "movw %w0, -1"#dst3" \n\t" -void ff_vp3_v_loop_filter_mmx(uint8_t *src, int stride, int *bounding_values) +void ff_vp3_v_loop_filter_mmx2(uint8_t *src, int stride, int *bounding_values) { __asm__ volatile( "movq %0, %%mm6 \n\t" @@ -105,7 +105,7 @@ ); } -void ff_vp3_h_loop_filter_mmx(uint8_t *src, int stride, int *bounding_values) +void ff_vp3_h_loop_filter_mmx2(uint8_t *src, int stride, int *bounding_values) { x86_reg tmp; diff -r 0839f325edb5 -r b661cf8690a1 i386/vp3dsp_mmx.h --- a/i386/vp3dsp_mmx.h Fri Oct 17 03:18:08 2008 +0000 +++ b/i386/vp3dsp_mmx.h Sun Oct 19 04:40:24 2008 +0000 @@ -29,7 +29,7 @@ void ff_vp3_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block); void ff_vp3_idct_add_mmx(uint8_t *dest, int line_size, DCTELEM *block); -void ff_vp3_v_loop_filter_mmx(uint8_t *src, int stride, int *bounding_values); -void ff_vp3_h_loop_filter_mmx(uint8_t *src, int stride, int *bounding_values); +void ff_vp3_v_loop_filter_mmx2(uint8_t *src, int stride, int *bounding_values); +void ff_vp3_h_loop_filter_mmx2(uint8_t *src, int stride, int *bounding_values); #endif /* AVCODEC_I386_VP3DSP_MMX_H */