diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-12 07:28:12 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-12 22:54:10 +0100 |
commit | d85c9b036e65afa05dcc8fbf37813ef4a05db1f3 (patch) | |
tree | cdf7469df86a63771fa6a2df5ef9ee4db9be2a95 /libavcodec/vp56.h | |
parent | db594f65ec4e4a8d85113f309f3d9c31959b48e3 (diff) | |
download | ffmpeg-d85c9b036e65afa05dcc8fbf37813ef4a05db1f3.tar.gz |
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/vp56.h')
-rw-r--r-- | libavcodec/vp56.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index e9a53a1667..926d28b5ae 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; |