diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-12-08 10:41:18 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-12-08 10:41:18 +0000 |
commit | d2e45f33a4f3ebafb9a097a0dea844697d79c494 (patch) | |
tree | 6d516345e8912e25a4637bea78025f9907a47003 /libavcodec/ppc | |
parent | 30ea3075442fc0380e0d5de835324d5db1f22194 (diff) | |
download | ffmpeg-d2e45f33a4f3ebafb9a097a0dea844697d79c494.tar.gz |
Switch VC-1 decoder to output decoded residual immediately.
Originally committed as revision 11188 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r-- | libavcodec/ppc/vc1dsp_altivec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ppc/vc1dsp_altivec.c b/libavcodec/ppc/vc1dsp_altivec.c index b8e3a5d125..8387a5e0f4 100644 --- a/libavcodec/ppc/vc1dsp_altivec.c +++ b/libavcodec/ppc/vc1dsp_altivec.c @@ -332,5 +332,5 @@ static void vc1_inv_trans_8x4_altivec(DCTELEM block[64], int n) void vc1dsp_init_altivec(DSPContext* dsp, AVCodecContext *avctx) { dsp->vc1_inv_trans_8x8 = vc1_inv_trans_8x8_altivec; - dsp->vc1_inv_trans_8x4 = vc1_inv_trans_8x4_altivec; + //dsp->vc1_inv_trans_8x4 = vc1_inv_trans_8x4_altivec; } |