diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-04-21 17:35:30 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-04-21 17:35:30 +0000 |
commit | a456df258e0bed3801d03352fcaa306d4aaf1376 (patch) | |
tree | fde40fd97f7cd93cf61def489a033168e38c8421 /libavcodec/rv34.c | |
parent | 7bbd2fb12657cbaf8862f0123ebce6e8c883fe37 (diff) | |
download | ffmpeg-a456df258e0bed3801d03352fcaa306d4aaf1376.tar.gz |
100l: VLC table array should not be const
Originally committed as revision 18642 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv34.c')
-rw-r--r-- | libavcodec/rv34.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv34.c b/libavcodec/rv34.c index 8a1788b27f..1c077e8a79 100644 --- a/libavcodec/rv34.c +++ b/libavcodec/rv34.c @@ -82,7 +82,7 @@ static const int table_offs[] = { 111430, 111462, 111494, 112878, 114320, 114988, 115660, 116310, 116950, 117592 }; -static const VLC_TYPE table_data[117592][2]; +static VLC_TYPE table_data[117592][2]; /** * Generate VLC from codeword lengths. |