diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-12-27 23:51:46 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-12-27 23:51:46 +0000 |
commit | 1457ab523343e94e094ad1c60de37077f8dc5589 (patch) | |
tree | 2df86f0b66c5df4c373dec5809a1f62c563df901 /libavcodec/simple_idct.h | |
parent | ac97734133a52c41825e427fd15a66f65a89d4bb (diff) | |
download | ffmpeg-1457ab523343e94e094ad1c60de37077f8dc5589.tar.gz |
qpel encoding
4mv+b frames encoding finally fixed
chroma ME
5 comparission functions for ME
b frame encoding speedup
wmv2 codec (unfinished)
user specified diamond size for EPZS
Originally committed as revision 1365 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/simple_idct.h')
-rw-r--r-- | libavcodec/simple_idct.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/simple_idct.h b/libavcodec/simple_idct.h index 6c6b4f0115..428c6072c8 100644 --- a/libavcodec/simple_idct.h +++ b/libavcodec/simple_idct.h @@ -26,3 +26,6 @@ void ff_simple_idct_put_mmx(UINT8 *dest, int line_size, INT16 *block); void simple_idct(short *block); void simple_idct248_put(UINT8 *dest, int line_size, INT16 *block); + +void simple_idct84_add(UINT8 *dest, int line_size, INT16 *block); +void simple_idct48_add(UINT8 *dest, int line_size, INT16 *block); |