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/msmpeg4data.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/msmpeg4data.h')
-rw-r--r-- | libavcodec/msmpeg4data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/msmpeg4data.h b/libavcodec/msmpeg4data.h index 9d728ef2e1..cab8f04dd0 100644 --- a/libavcodec/msmpeg4data.h +++ b/libavcodec/msmpeg4data.h @@ -1867,3 +1867,7 @@ static UINT8 *wmv1_scantable[WMV1_SCANTABLE_COUNT+1]={ wmv1_scantable03, }; +static UINT8 table_inter_intra[4][2]={ + {0,1},{2,2},{6,3},{7,3} +}; + |