diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-27 14:49:53 -0800 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-02-28 11:00:24 +0100 |
commit | d6acefe05862af244fd5a30ae946ed507c063994 (patch) | |
tree | d0526174935000f768fcdb4e93286aae9c8f6368 /libavcodec/proresdsp.h | |
parent | b23650491fbd579a4365f42bd42575afb7b53f7e (diff) | |
download | ffmpeg-d6acefe05862af244fd5a30ae946ed507c063994.tar.gz |
proresenc: Drop unnecessary DCT permutation bits
No permutation is necessary for the FDCT.
Diffstat (limited to 'libavcodec/proresdsp.h')
-rw-r--r-- | libavcodec/proresdsp.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/proresdsp.h b/libavcodec/proresdsp.h index 21d12e8814..71a07062f2 100644 --- a/libavcodec/proresdsp.h +++ b/libavcodec/proresdsp.h @@ -30,8 +30,6 @@ typedef struct ProresDSPContext { int idct_permutation_type; uint8_t idct_permutation[64]; - int dct_permutation_type; - uint8_t dct_permutation[64]; void (* idct_put) (uint16_t *out, int linesize, int16_t *block, const int16_t *qmat); void (* fdct) (const uint16_t *src, int linesize, int16_t *block); } ProresDSPContext; |