diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-17 18:28:40 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-17 18:28:40 +0000 |
commit | 5773a746695f445805291d3aa74fa82e948825f2 (patch) | |
tree | bf6e047b35fb787f204dcaafe848ad190d5bf68f /libavcodec/dsputil.h | |
parent | 1482fee88d0df2ff1f991725c87221f13b0b1c04 (diff) | |
download | ffmpeg-5773a746695f445805291d3aa74fa82e948825f2.tar.gz |
porting the mmx&sse2 (sse2 untested) vp3 idcts to the lavc idct API
Originally committed as revision 4260 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 002e284639..00143d6261 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -315,6 +315,7 @@ typedef struct DSPContext { #define FF_LIBMPEG2_IDCT_PERM 2 #define FF_SIMPLE_IDCT_PERM 3 #define FF_TRANSPOSE_IDCT_PERM 4 +#define FF_PARTTRANS_IDCT_PERM 5 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); |