diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-09-30 22:18:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-09-30 22:18:43 +0000 |
commit | f2f6134b9e5abb0890867d47ba8c0e293d0ba2fe (patch) | |
tree | 8617158ecbcd8bdaa8ca54c23f830c56a7be7b2c /libavcodec/mpegvideo.h | |
parent | 08f29f82b94704a9d2ea415a421bc579098303b7 (diff) | |
download | ffmpeg-f2f6134b9e5abb0890867d47ba8c0e293d0ba2fe.tar.gz |
rate distortion optimal cbp support (h263/mpeg4 non intra only)
Originally committed as revision 2323 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 58af196ea2..d46d4b6a97 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -453,6 +453,8 @@ typedef struct MpegEncContext { uint8_t *chroma_dc_vlc_length; #define UNI_AC_ENC_INDEX(run,level) ((run)*128 + (level)) + int coded_score[6]; + /** precomputed matrix (combine qscale and DCT renorm) */ int __align8 q_intra_matrix[32][64]; int __align8 q_inter_matrix[32][64]; |