summaryrefslogtreecommitdiff
path: root/libavcodec/xvididct.h
diff options
context:
space:
mode:
authorPascal Massimino <pascal.massimino@gmail.com>2014-08-27 02:58:10 +0200
committerDiego Biurrun <diego@biurrun.de>2014-09-02 14:41:13 -0700
commit7a1d6ddd2c6b2d66fbc1afa584cf506930a26453 (patch)
tree23c944d6dd16d12184720a1bb402fd5b18a68920 /libavcodec/xvididct.h
parent95c0cec03acec0a80cc1c7db48f3b2355d9e767b (diff)
xvid: Add C IDCT
Thanks to Pascal Massimino and Michael Militzer for relicensing as LGPL. Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/xvididct.h')
-rw-r--r--libavcodec/xvididct.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/libavcodec/xvididct.h b/libavcodec/xvididct.h
index e6cc69a57f..499f8190fc 100644
--- a/libavcodec/xvididct.h
+++ b/libavcodec/xvididct.h
@@ -19,11 +19,16 @@
#ifndef AVCODEC_XVIDIDCT_H
#define AVCODEC_XVIDIDCT_H
+#include <stdint.h>
+
#include "avcodec.h"
#include "idctdsp.h"
+void ff_xvid_idct(int16_t *const in);
+
void ff_xvid_idct_init(IDCTDSPContext *c, AVCodecContext *avctx);
-void ff_xvid_idct_init_x86(IDCTDSPContext *c);
+void ff_xvid_idct_init_x86(IDCTDSPContext *c, AVCodecContext *avctx,
+ unsigned high_bit_depth);
#endif /* AVCODEC_XVIDIDCT_H */