diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-04-07 02:03:32 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-04-07 02:03:32 +0000 |
commit | 3bf43d42eda38abd5b75d004e1431d71aacfbe48 (patch) | |
tree | 125b6236234e228bfa5646155d59f9148e89ae9c /libavcodec/mpegvideo.h | |
parent | e1a9dbffed0b9d087d9f062ee61c493dd262caba (diff) | |
download | ffmpeg-3bf43d42eda38abd5b75d004e1431d71aacfbe48.tar.gz |
mpeg4 mpeg quantizer support
Originally committed as revision 381 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index f809a12550..b7fe207a52 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -309,7 +309,11 @@ typedef struct MpegEncContext { DCTELEM intra_block[6][64] __align8; DCTELEM inter_block[6][64] __align8; DCTELEM inter4v_block[6][64] __align8; - void (*dct_unquantize)(struct MpegEncContext *s, + void (*dct_unquantize_mpeg)(struct MpegEncContext *s, + DCTELEM *block, int n, int qscale); + void (*dct_unquantize_h263)(struct MpegEncContext *s, + DCTELEM *block, int n, int qscale); + void (*dct_unquantize)(struct MpegEncContext *s, // unquantizer to use (mpeg4 can use both) DCTELEM *block, int n, int qscale); } MpegEncContext; |