diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-06-18 00:46:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-06-18 00:46:02 +0000 |
commit | 8f8402e49c49b1106ad5cae075534cb383247041 (patch) | |
tree | ef219ff9aeda70c94cd37e78417fa2654a0f5075 /libavcodec/h263data.h | |
parent | f0063c1a5b199c3e504c7539e5078d6c2e9242ba (diff) | |
download | ffmpeg-8f8402e49c49b1106ad5cae075534cb383247041.tar.gz |
dc scale simplification/optimization
Originally committed as revision 695 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263data.h')
-rw-r--r-- | libavcodec/h263data.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/h263data.h b/libavcodec/h263data.h index 5a7b943ea3..5aa1e18dbb 100644 --- a/libavcodec/h263data.h +++ b/libavcodec/h263data.h @@ -202,3 +202,9 @@ static const UINT16 h263_format[8][2] = { { 704, 576 }, { 1408, 1152 }, }; + +static UINT8 h263_aic_dc_scale_table[32]={ +// 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 + 0, 2, 4, 6, 8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62 +}; + |