diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-08 22:00:29 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-08 22:17:04 +0200 |
commit | 0dcebb9f6345ecc7fa2f184c48cc5a21a3011b93 (patch) | |
tree | 622bc82f4a5edf8660edd85e36827f1614214eed /libavcodec/xvididct.c | |
parent | 5ff2b33401ec0ac6a238d02e56100b7bce8afefe (diff) | |
parent | 84d173d3de97c753234ab0c0b50551d51413d663 (diff) | |
download | ffmpeg-0dcebb9f6345ecc7fa2f184c48cc5a21a3011b93.tar.gz |
Merge commit '84d173d3de97c753234ab0c0b50551d51413d663'
* commit '84d173d3de97c753234ab0c0b50551d51413d663':
xvididct: Ensure that the scantable permutation is always set correctly
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/xvididct.c')
-rw-r--r-- | libavcodec/xvididct.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/xvididct.c b/libavcodec/xvididct.c index 36f65a6aaf..0c61fb5312 100644 --- a/libavcodec/xvididct.c +++ b/libavcodec/xvididct.c @@ -33,4 +33,6 @@ av_cold void ff_xvididct_init(IDCTDSPContext *c, AVCodecContext *avctx) if (ARCH_X86) ff_xvididct_init_x86(c); + + ff_init_scantable_permutation(c->idct_permutation, c->perm_type); } |