diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-10-27 12:09:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-27 12:09:25 +0000 |
commit | f3c09da19fce9773e9f21dcca530492032df5d89 (patch) | |
tree | 6a05a9f9d5e2c06e9d1cbb26c6b0e39992620e3d /libavcodec/msmpeg4.c | |
parent | a09907d988002192311a358ee6c7d5a730f1e02e (diff) | |
download | ffmpeg-f3c09da19fce9773e9f21dcca530492032df5d89.tar.gz |
75% smaller rl_length table
Originally committed as revision 1077 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r-- | libavcodec/msmpeg4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c index cd74850f95..19d672627e 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -74,7 +74,7 @@ int frame_count = 0; #include "msmpeg4data.h" -static int rl_length[2][NB_RL_TABLES][MAX_LEVEL+1][MAX_RUN+1][2]; +static UINT8 rl_length[2][NB_RL_TABLES][MAX_LEVEL+1][MAX_RUN+1][2]; #ifdef STATS |