diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-07-07 08:34:46 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-07-07 08:34:46 +0000 |
commit | de0f2f4cca622b035018943639b2673d38be28b5 (patch) | |
tree | 9130afd5ccdc13cef46277331b6b05b6a92d2bea /libavcodec/mpegvideo.h | |
parent | 0a12d6fdfda914663baa460537c36da76f7af3ec (diff) | |
download | ffmpeg-de0f2f4cca622b035018943639b2673d38be28b5.tar.gz |
wmv1 slice_height != mb_height support
encoding of slice_height != mb_height
1bit shorter wmv1 headers if bit_rate<50 !? ROTFL M$ is even more stupid than i thought
using dc of non intra blocks for dc prediction of wmv1 if bitrate < 129 && res < 320x240
Originally committed as revision 723 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 90e852e164..83a6bd877b 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -392,6 +392,7 @@ typedef struct MpegEncContext { UINT8 *intra_h_scantable; /* [mb_intra][isChroma][level][run][last] */ int ac_stats[2][2][MAX_LEVEL+1][MAX_RUN+1][2]; + int inter_intra_pred; /* decompression specific */ |