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/vp56.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/vp56.h') diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 80ede6a0aa..7fe6cf3eb4 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -100,7 +100,7 @@ struct vp56_context { VideoDSPContext vdsp; VP3DSPContext vp3dsp; VP56DSPContext vp56dsp; - ScanTable scantable; + uint8_t idct_scantable[64]; AVFrame *frames[4]; uint8_t *edge_emu_buffer_alloc; uint8_t *edge_emu_buffer; -- cgit v1.2.3