diff options
author | Alexander Strange <astrange@ithinksw.com> | 2008-04-16 01:34:55 +0000 |
---|---|---|
committer | Alexander Strange <astrange@ithinksw.com> | 2008-04-16 01:34:55 +0000 |
commit | 0e956ba2771452088ebfd69bbc75fce07c56f33c (patch) | |
tree | 2ecdf086901d249dfec4c4e977aca3fa4ca619bc /libavcodec/dsputil.h | |
parent | b4999290fd962a484df9a51ff786a2454c6400b3 (diff) | |
download | ffmpeg-0e956ba2771452088ebfd69bbc75fce07c56f33c.tar.gz |
Add a new IDCT permutation, used in xvid_sse2 and possibly future similar IDCTs.
Originally committed as revision 12842 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 03b48c80de..cd9ae08211 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -408,6 +408,7 @@ typedef struct DSPContext { #define FF_SIMPLE_IDCT_PERM 3 #define FF_TRANSPOSE_IDCT_PERM 4 #define FF_PARTTRANS_IDCT_PERM 5 +#define FF_SSE2_IDCT_PERM 6 int (*try_8x8basis)(int16_t rem[64], int16_t weight[64], int16_t basis[64], int scale); void (*add_8x8basis)(int16_t rem[64], int16_t basis[64], int scale); |