]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/xvididct.h
Merge commit '2f172f1ae984b763c06069adb51d0053b3834f4b'
[ffmpeg] / libavcodec / xvididct.h
index 1b95cb752ce438a96a5551f5b936ad8fa7c8b003..f7dfba48865f9ffeb79c5254984f038232486bad 100644 (file)
 #ifndef AVCODEC_XVIDIDCT_H
 #define AVCODEC_XVIDIDCT_H
 
+#include <stdint.h>
+
 #include "avcodec.h"
 #include "idctdsp.h"
 
-void ff_xvididct_init(IDCTDSPContext *c, AVCodecContext *avctx);
+void ff_xvid_idct(int16_t *const in);
 
-void ff_xvididct_init_x86(IDCTDSPContext *c);
+void ff_xvid_idct_init(IDCTDSPContext *c, AVCodecContext *avctx);
 
-void ff_idct_xvid(int16_t *const In);
+void ff_xvid_idct_init_x86(IDCTDSPContext *c, AVCodecContext *avctx,
+                           unsigned high_bit_depth);
 
 #endif /* AVCODEC_XVIDIDCT_H */