diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-04-23 23:38:54 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-23 23:38:54 +0000 |
commit | 44f54ceb3084eb8cb5ba96887ecb0041dec9a520 (patch) | |
tree | 952a9a3ec75da3e55c49d32efa80e3ab03de252f /libavcodec/dsputil.c | |
parent | 1671083f55132a48154b9f898c1cf4308ded17aa (diff) | |
download | ffmpeg-44f54ceb3084eb8cb5ba96887ecb0041dec9a520.tar.gz |
VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
ported to ffmpeg by (ja2morri at csclub dot uwaterloo dot ca (james morrison))
useable under LGPL with their agreement
Originally committed as revision 3048 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 7f26bd98aa..fce0b81634 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -3286,6 +3286,9 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) #ifdef HAVE_MLIB dsputil_init_mlib(c, avctx); #endif +#ifdef ARCH_SPARC + dsputil_init_vis(c,avctx); +#endif #ifdef ARCH_ALPHA dsputil_init_alpha(c, avctx); #endif |