Mercurial > libavcodec.hg
diff mpegvideo.h @ 312:8cf5507e6ca5 libavcodec
mpeg4 mpeg quantizer support
| author | michaelni |
|---|---|
| date | Sun, 07 Apr 2002 02:03:32 +0000 |
| parents | 764aeec1320e |
| children | cda7d0857baf |
line wrap: on
line diff
--- a/mpegvideo.h Sat Apr 06 22:29:37 2002 +0000 +++ b/mpegvideo.h Sun Apr 07 02:03:32 2002 +0000 @@ -309,7 +309,11 @@ 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;
