summaryrefslogtreecommitdiff
path: root/libavcodec/proresdsp.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-02-27 14:49:53 -0800
committerDiego Biurrun <diego@biurrun.de>2014-02-28 11:00:24 +0100
commitd6acefe05862af244fd5a30ae946ed507c063994 (patch)
treed0526174935000f768fcdb4e93286aae9c8f6368 /libavcodec/proresdsp.c
parentb23650491fbd579a4365f42bd42575afb7b53f7e (diff)
proresenc: Drop unnecessary DCT permutation bits
No permutation is necessary for the FDCT.
Diffstat (limited to 'libavcodec/proresdsp.c')
-rw-r--r--libavcodec/proresdsp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/proresdsp.c b/libavcodec/proresdsp.c
index ac05d6176d..09008ea5ef 100644
--- a/libavcodec/proresdsp.c
+++ b/libavcodec/proresdsp.c
@@ -86,8 +86,5 @@ av_cold void ff_proresdsp_init(ProresDSPContext *dsp)
#endif
#if CONFIG_PRORES_ENCODER
dsp->fdct = prores_fdct_c;
- dsp->dct_permutation_type = FF_NO_IDCT_PERM;
- ff_init_scantable_permutation(dsp->dct_permutation,
- dsp->dct_permutation_type);
#endif
}