summaryrefslogtreecommitdiff
path: root/libavcodec/proresdsp.h
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2012-02-02 20:54:53 +0100
committerKostya Shishkov <kostya.shishkov@gmail.com>2012-02-15 07:14:51 +0100
commit1a265f6187e9036b649fc08f8293b5e1fcd8dfbe (patch)
tree3008fcfe16f8e7e0c773655808309e5fd358a37c /libavcodec/proresdsp.h
parent8835c2c829d84d99e237e63f432b6e9f54e2ecf6 (diff)
prores encoder
Diffstat (limited to 'libavcodec/proresdsp.h')
-rw-r--r--libavcodec/proresdsp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/proresdsp.h b/libavcodec/proresdsp.h
index 8b864faabd..f6578258a1 100644
--- a/libavcodec/proresdsp.h
+++ b/libavcodec/proresdsp.h
@@ -30,7 +30,10 @@
typedef struct {
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, DCTELEM *block, const int16_t *qmat);
+ void (* fdct) (const uint16_t *src, int linesize, DCTELEM *block);
} ProresDSPContext;
void ff_proresdsp_init(ProresDSPContext *dsp);