summaryrefslogtreecommitdiff
path: root/libavcodec/i386/idct_xvid.h
diff options
context:
space:
mode:
authorAlexander Strange <astrange@ithinksw.com>2008-04-16 01:36:14 +0000
committerAlexander Strange <astrange@ithinksw.com>2008-04-16 01:36:14 +0000
commitf73a6393e755b7858ec2b7f1947080f14a51c28c (patch)
treedece7ea195375012618872dd5641e71bfd8f7ae6 /libavcodec/i386/idct_xvid.h
parent0e956ba2771452088ebfd69bbc75fce07c56f33c (diff)
Add a new xvid-style IDCT using SSE2.
Originally committed as revision 12843 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/idct_xvid.h')
-rw-r--r--libavcodec/i386/idct_xvid.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/i386/idct_xvid.h b/libavcodec/i386/idct_xvid.h
index 3c81244619..8e62671e5e 100644
--- a/libavcodec/i386/idct_xvid.h
+++ b/libavcodec/i386/idct_xvid.h
@@ -28,5 +28,8 @@
void ff_idct_xvid_mmx(short *block);
void ff_idct_xvid_mmx2(short *block);
+void ff_idct_xvid_sse2(short *block);
+void ff_idct_xvid_sse2_put(uint8_t *dest, int line_size, short *block);
+void ff_idct_xvid_sse2_add(uint8_t *dest, int line_size, short *block);
#endif /* FFMPEG_IDCT_XVID_H */