summaryrefslogtreecommitdiff
path: root/libavcodec/xvididct.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/xvididct.h')
-rw-r--r--libavcodec/xvididct.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/libavcodec/xvididct.h b/libavcodec/xvididct.h
index b0233c342c..f7dfba4886 100644
--- a/libavcodec/xvididct.h
+++ b/libavcodec/xvididct.h
@@ -19,13 +19,16 @@
#ifndef AVCODEC_XVIDIDCT_H
#define AVCODEC_XVIDIDCT_H
+#include <stdint.h>
+
#include "avcodec.h"
#include "idctdsp.h"
-void ff_xvid_idct_init(IDCTDSPContext *c, AVCodecContext *avctx);
+void ff_xvid_idct(int16_t *const in);
-void ff_xvid_idct_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 */