Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPascal Massimino <pascal.massimino@gmail.com>2014-08-09 15:06:17 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-08-12 23:58:45 +0400
commit298b3b6c1f8f66b9bc6de53a7b51d3de745d946b (patch)
tree464a3a571455ebf0f5eb5e0453482a00cf8a9ea3 /libavcodec/xvididct.h
parent9ffac3d00d2f453552c7541dcdd96f88b2419bb2 (diff)
avcodec: add C xvid IDCT support
Thanks to Pascal Massimino and Michael Militzer for permission to use under LGPL The xvid idct code is from xvid, and nearly unchanged to make future syncing easy the integration into ffmpeg is done by the commiter the commit message is written by the commiter Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/xvididct.h')
-rw-r--r--libavcodec/xvididct.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/xvididct.h b/libavcodec/xvididct.h
index 6678329201..1b95cb752c 100644
--- a/libavcodec/xvididct.h
+++ b/libavcodec/xvididct.h
@@ -26,4 +26,6 @@ void ff_xvididct_init(IDCTDSPContext *c, AVCodecContext *avctx);
void ff_xvididct_init_x86(IDCTDSPContext *c);
+void ff_idct_xvid(int16_t *const In);
+
#endif /* AVCODEC_XVIDIDCT_H */