]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/proresdsp.h
movenc: Write the unknown duration as 64 bit fields in ismv
[ffmpeg] / libavcodec / proresdsp.h
index 18d6bf583096fb14a91fc509b53c6774c233f7bf..f6578258a1205d533ebd8df469a10663f1b421ae 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);
 
+void ff_proresdsp_x86_init(ProresDSPContext *dsp);
+
 #endif /* AVCODEC_PRORESDSP_H */