diff options
author | Pascal Massimino <pascal.massimino@gmail.com> | 2014-08-09 13:06:17 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-12 21:58:45 +0200 |
commit | 298b3b6c1f8f66b9bc6de53a7b51d3de745d946b (patch) | |
tree | 464a3a571455ebf0f5eb5e0453482a00cf8a9ea3 /libavcodec/xvididct.h | |
parent | 9ffac3d00d2f453552c7541dcdd96f88b2419bb2 (diff) | |
download | ffmpeg-298b3b6c1f8f66b9bc6de53a7b51d3de745d946b.tar.gz |
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.h | 2 |
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 */ |