diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-01-15 18:05:23 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-01-15 18:05:23 +0000 |
commit | 3a87ac948f0cd95218e62d5a98b8b8d5e4c11366 (patch) | |
tree | dd38bc234a7063a95908cad07144019af0c2d670 /libavcodec/mpegvideo.h | |
parent | aaa1e4cd48968131fa02d470f61a7aef7ddc7eea (diff) | |
download | ffmpeg-3a87ac948f0cd95218e62d5a98b8b8d5e4c11366.tar.gz |
more compare functions (rd & bit)
Originally committed as revision 1461 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index e76996ae9b..6f9d5b6989 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -552,6 +552,7 @@ typedef struct MpegEncContext { void (*dct_unquantize)(struct MpegEncContext *s, // unquantizer to use (mpeg4 can use both) DCTELEM *block/*align 16*/, int n, int qscale); int (*dct_quantize)(struct MpegEncContext *s, DCTELEM *block/*align 16*/, int n, int qscale, int *overflow); + int (*fast_dct_quantize)(struct MpegEncContext *s, DCTELEM *block/*align 16*/, int n, int qscale, int *overflow); void (*fdct)(DCTELEM *block/* align 16*/); void (*idct_put)(UINT8 *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/); void (*idct_add)(UINT8 *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/); |