summaryrefslogtreecommitdiff
path: root/libavcodec/vp5.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-03-12 07:28:12 -0700
committerMichael Niedermayer <michaelni@gmx.at>2013-03-12 22:54:10 +0100
commitd85c9b036e65afa05dcc8fbf37813ef4a05db1f3 (patch)
treecdf7469df86a63771fa6a2df5ef9ee4db9be2a95 /libavcodec/vp5.c
parentdb594f65ec4e4a8d85113f309f3d9c31959b48e3 (diff)
vp3/x86: use full transpose for all IDCTs.
This way, the special IDCT permutations are no longer needed. Bfin code is disabled until someone updates it. This is similar to how H264 does it, and removes the dsputil dependency imposed by the scantable code. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vp5.c')
-rw-r--r--libavcodec/vp5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp5.c b/libavcodec/vp5.c
index b2d7de94f1..4eecbe3a87 100644
--- a/libavcodec/vp5.c
+++ b/libavcodec/vp5.c
@@ -172,7 +172,7 @@ static void vp5_parse_coeff(VP56Context *s)
{
VP56RangeCoder *c = &s->c;
VP56Model *model = s->modelp;
- uint8_t *permute = s->scantable.permutated;
+ uint8_t *permute = s->idct_scantable;
uint8_t *model1, *model2;
int coeff, sign, coeff_idx;
int b, i, cg, idx, ctx, ctx_last;