# HG changeset patch # User gpoirier # Date 1181895726 0 # Node ID 68d85146620a90372e014dee1985082864ec7864 # Parent e92146cec4a83de0ecce20e08d93161d3ccde80e some samples aren't decoded correctly such as ( http://www.pennfans.net/files/videos/Penn&Teller.on.The.View.mp4 ) with current Altivec implementation of loopfilter, while others are fine. Let's disable it until we iron this bug out. diff -r e92146cec4a8 -r 68d85146620a ppc/h264_altivec.c --- a/ppc/h264_altivec.c Fri Jun 15 08:16:24 2007 +0000 +++ b/ppc/h264_altivec.c Fri Jun 15 08:22:06 2007 +0000 @@ -874,8 +874,10 @@ c->avg_h264_chroma_pixels_tab[0] = avg_h264_chroma_mc8_altivec; c->h264_idct_add = ff_h264_idct_add_altivec; c->h264_idct8_add = ff_h264_idct8_add_altivec; +#if 0 // some samples aren't decoded correctly while others are fine. What's wrong? c->h264_v_loop_filter_luma= h264_v_loop_filter_luma_altivec; c->h264_h_loop_filter_luma= h264_h_loop_filter_luma_altivec; +#endif #define dspfunc(PFX, IDX, NUM) \ c->PFX ## _pixels_tab[IDX][ 0] = PFX ## NUM ## _mc00_altivec; \