From 015821229f96bf7e677f2a711a58dbea3009f574 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Tue, 12 Mar 2013 07:28:12 -0700 Subject: vp3: Use full transpose for all IDCTs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This way, the special IDCT permutations are no longer needed. This is similar to how H264 does it, and removes the dsputil dependency imposed by the scantable code. Also remove the unused type == 0 cases from the plain C version of the idct. Signed-off-by: Martin Storsjö --- libavcodec/bfin/vp3_bfin.c | 1 - 1 file changed, 1 deletion(-) (limited to 'libavcodec/bfin') diff --git a/libavcodec/bfin/vp3_bfin.c b/libavcodec/bfin/vp3_bfin.c index 86c4b23b41..a8cdcb6a45 100644 --- a/libavcodec/bfin/vp3_bfin.c +++ b/libavcodec/bfin/vp3_bfin.c @@ -61,6 +61,5 @@ av_cold void ff_vp3dsp_init_bfin(VP3DSPContext *c, int flags) if (!(flags & CODEC_FLAG_BITEXACT)) { c->idct_add = bfin_vp3_idct_add; c->idct_put = bfin_vp3_idct_put; - c->idct_perm = FF_TRANSPOSE_IDCT_PERM; } } -- cgit v1.2.3