diff options
author | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2007-06-17 09:38:35 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2007-06-17 09:38:35 +0000 |
commit | 7d2bf29c888854ca5e8a52cf5c1a9f2e6f074913 (patch) | |
tree | 6713b1fc7b025a607812a1e611d6a23f46ab69c6 | |
parent | 22fa38f0c85fb31cddbb0bc22a2df5953c702b95 (diff) | |
download | ffmpeg-7d2bf29c888854ca5e8a52cf5c1a9f2e6f074913.tar.gz |
re-enable use of h264_v_loop_filter_luma_altivec and h264_h_loop_filter_luma_altivec,
they work fine now
Originally committed as revision 9350 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ppc/h264_altivec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/ppc/h264_altivec.c b/libavcodec/ppc/h264_altivec.c index 69cbc858da..030a6c6e9a 100644 --- a/libavcodec/ppc/h264_altivec.c +++ b/libavcodec/ppc/h264_altivec.c @@ -882,10 +882,8 @@ void dsputil_h264_init_ppc(DSPContext* c, AVCodecContext *avctx) { 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; \ |