]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/proresdsp.h
h264: (trivial) remove unneeded macro argument in x86/cabac.h
[ffmpeg] / libavcodec / proresdsp.h
index 7e81b0870c6eb1415cd6d461ed4250c239f0bdd8..57e8fb24082547762c91b08914dd2be81512a628 100644 (file)
 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, AVCodecContext *avctx);